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を使用してデータを表示しています。列の 1 つに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;