0

I am using Infragistics WebDataGrid to display data. When one of the column have null value, that row do not displayed in that grid.

Have anyone has suggestions?

Danko Valkov
  • 1,038
  • 8
  • 17
Aarif Qureshi
  • 474
  • 1
  • 3
  • 13

1 Answers1

1

Set the Nullable property of the required column to Nullable.Null as shown below:

// Get a column.
UltraGridColumn column = this.ultraGrid1.DisplayLayout.Bands[0].Columns["Phone"];

// Set the Nullable to Null so the UltraGrid
column.Nullable = Nullable.Null;
Yoh Deadfall
  • 2,711
  • 7
  • 28
  • 32
Sanjeev Rai
  • 6,721
  • 4
  • 23
  • 33