I need to be able to get the selected row that contains a combobox when the combobox selectedindex changes. I have a radgrid that contains a combobox control in one of the columns. At runtime the combo box is populated and set to the proper selection during the itemdatabound method. The user can then change the selected item in the combobox which I need to grab other cell values in that same grid row. All this needs to be done in javascript. I have found articles where I need to get combobox.parent.parent to get the selected index row which I have been able to achive by doing
var parent = sender.get_parent;
var grandparent = parent.get_parent;
But have not been able to successfully get the selected row to be able to get values from other cells in that row. Any suggestions on how to get the information out using javascript would be appreciated
Thanks
Justin
var parent = sender.get_parent;
var grandparent = parent.get_parent;
But have not been able to successfully get the selected row to be able to get values from other cells in that row. Any suggestions on how to get the information out using javascript would be appreciated
Thanks
Justin