I have a bound Hierarchical UltraWebGrid and one of the columns is a DropDownList / ValueList with values (Read, Write, Execute). When I change the vale of the parent column DropDownList, I would like to set each child's DropDownList column to be the same selectedValue as the parent. For example, if select "Execute" from the parents DropDownList, I need to loop through each of that parents child rows on the client side and set the selectedValue = "Execute" as well. Right now I am working with the ValueListSelChangeHandler but can use a hand here. Thanks!
Hi jdymond,
It has been a while since your post, however in case you still need assistance I would be glad to help.
You may want to consider using the AfterCellUpdateHandler and checking whether a cell of the respective column and band has been edited as such:
function UltraWebGrid1_AfterCellUpdateHandler(gridName, cellId){if(igtbl_getCellById(cellId).Band.Index==0 && igtbl_getCellById(cellId).Column.Index == 3 ) { for (i=0; i<igtbl_getCellById(cellId).Row.Rows.length; i++) { var currentValue = igtbl_getCellById(cellId).Value; }}}
Please let me know if you need further assistance.
Best Regards,
Petar IvanovDeveloper Support EngineerInfragistics, Inc.http://es.infragistics.com/support