我正在使用Infragistics WebDataGrid来显示数据。当其中一列具有null值时,该行不会显示在网格中。
有人有什么建议吗?
发布于 2013-03-19 16:58:59
将所需列的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;https://stackoverflow.com/questions/15494470
复制相似问题