Infragistics网格

时间:2013-03-19 08:19:17

标签: c# asp.net infragistics webdatagrid

我正在使用Infragistics WebDataGrid来显示数据。 当其中一列具有null值时,该行不会显示在该网格中。

有人有建议吗?

1 个答案:

答案 0 :(得分:1)

将所需列的Nullable属性设置为Nullable.Null,如下所示:

// Get a column.
UltraGridColumn column = this.ultraGrid1.DisplayLayout.Bands[0].Columns["Phone"];

// Set the Nullable to Null so the UltraGrid
column.Nullable = Nullable.Null;