Hi All,
How can we add a checkbox column to ultrawebgrid. i want to add it like item template in gridview.currently i have added manually
UltraWebGrid1.Columns.Add("ALL", "ALL") UltraWebGrid1.Columns(0).Type = ColumnType.CheckBox UltraWebGrid1.Columns(0).AllowUpdate = AllowUpdate.Yes
but i am not able to fire an evnet for this checkbox.
please suggest is there any way to accomplish this.
Thanks in Advance.
Take a look here
http://blogs.infragistics.com/forums/p/2995/20336.aspx
and here
http://community.infragistics.com/forums/p/1540/31541.aspx
The second URL solves (kind of) different problem, but the code also uses templated columns.
The first one has almost everything you need.
If you want to go with client side, you could attach javascript handler to 'AfterCellUpdated' event, which will fire when you change 'check' state in your column.