Hi,
I have an ultrawebgrid which has a checkbox for each row. I need to have client side method to select/unselect all the checkboxes.
What is the best possible solution for this?
Thanks
Sharath
You woud need to write a loop to do this
http://forums.infragistics.com/forums/p/1156/11700.aspx#11700
Yep, that's what I did. I used event ColumnHeaderClickHandler and then looped through in the function:
function CheckBoxHeader(gridName, columnId, button) {
//-----------------------------------------------------------------------------------
// allows the user to select all the checkboxes in a single column
// by clicking on the column header.
... etc ...