UltraWebGrid1.Columns[0].Type = Infragistics.WebUI.UltraWebGrid.ColumnType.CheckBox;
UltraWebGrid1.Columns[0].AllowUpdate = Infragistics.WebUI.UltraWebGrid.AllowUpdate.Yes;
I created a checkbox col with the code above. How can I change the value of the checkbox with C# code?
Set the value of the corresponding cell to a boolean "true" to check the checkbox, and to a boolean "false" to uncheck it.
I tried that and it does not work.
protected void chkAll_CheckedChanged(object sender, EventArgs e)
foreach (UltraGridRow row in UltraWebGrid1.Rows)
}