我正在使用Infragistics WebDataGrid
来显示数据。
当其中一列具有null
值时,该行不会显示在该网格中。
有人有建议吗?
答案 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;