I am using the Infragistics' Ultra webgrid. What i am trying to do is this: my grid has two levels.
i have a checkbox in the header of each level,as well as on every row of the grid
(using cell and header templates). when i check the checkbox located in the header of the second level,
all the rows below the header must get checked i.e. the checkboxes of the rows below the header
should get checked. Please advise. Thanks
Hello,
You can take a look at the following link which provides some information related to your requirements.
http://forums.infragistics.com/forums/p/1540/31497.aspx#31497
Hi Radoslav,
I'd already looked at that page before you replied...:)
Unfortunately, what i'm trying to do is somewhat different. I was wondering if there was anyway
to access a header in the webgrid like any other row is accessed. You knw, something like,
//in the header's checkbox's oncheckedchanged event handler
CheckBox cb = (CheckBox)sender;
HeaderItem hdrItm = cb.Parent;
UltraGridRow row = hdrItm.HeaderRow;
// and then use this row to check or uncheck its children, as and when the header's checkbox is checked
or unchecked.
Thanks anyway.