Hi,
I have loaded the hierarchial grid with single level band using 'Manual Load on Demand' method. I have created a checkbox template column in child band (server-side) using Interface. Now, I have to handle certain functions in the check-box's checked changed event.
How shall i handle the event for check-box which is in template column either from client-side or server-side ?
Note: I am using 2010.3 version.
Hello tct_rani_1106 ,
Thank you for posting in our forums.
I recommend you handling the InitializeRow event of the WebHierarchicalDataGrid.
You can check the Level of the row and if it is in the child band you can find the CheckBox control
and subscribe it for CheckedChanged event.
Do you have claims if it should be handled on the server or the client side?
Hope hearing from you.
Hi Georgieva,
As you said, i tried to include addHandler in the Webhierarchialdatagrid's InitializeRow event. Even then the event is not triggered.
If i give the AutoPostBack= true for the checkbox,
ERROR: "PageRequestManager: Collection was modified" is displayed.
This is because i have binded the Grid in each postback.
I couldn't find any solution still....could you provide a solution as soon as possible