0

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

有人有建议吗?

4

1 回答 1

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;
于 2013-03-19T08:58:58.800 回答