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
255
CheckBox in col access
posted
UltraWebGrid1.Columns.Insert(0, "Select");

 

UltraWebGrid1.Columns[0].Type = Infragistics.WebUI.UltraWebGrid.ColumnType.CheckBox;

UltraWebGrid1.DisplayLayout.Bands[0].Columns[0].Header.Caption = "Select";

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?

 

Parents Reply Children