Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 InfragisticsWebDataGrid来显示数据。当其中一列具有null值时,该行不会显示在该网格中。
WebDataGrid
null
有人有建议吗?
将Nullable所需列的属性设置Nullable.Null为如下所示:
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;