簡體   English   中英

基礎設施網格

[英]Infragistics grid

我正在使用Infragistics WebDataGrid來顯示數據。 當列之一為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;

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM