Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
Checkbox default value
posted

Hi,

 I am adding a CheckBox column to my wingrid at runtime.  How can I make it default to 'false' as opposed to the filled in square of 'null'?  Right now I am looping through each cell and setting it to False.  This is also marking the row as "edited".  Does anyone know a better way?  Here is my code so far:

 

Infragistics.Win.UltraWinGrid.UltraGridColumn completedColumn;

completedColumn = myGrid.DisplayLayout.Bands[0].Columns.Insert(0, "Completed");

 

completedColumn.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;

foreach (Infragistics.Win.UltraWinGrid.UltraGridRow row in myGrid.Rows)

{

row.Cells[
"Completed"].Value = false;

}