Hi,
How would you get the parent cell of RadComboBox in a OnClientDropDownClosedHandler?
This is is an ItemTemplate in a RadGrid
<telerik:RadComboBox ID="TerritoryManagerRadComboBox" runat="server" onclientdropdownclosed="OnClientDropDownClosedHandler">
// here I want to get the cell object
I 'd like to get this in javasscript and sender.Parent does not work... What is the correct synthax if any or is there another way to acheieve this? I need the cell object to modify the cell style the radcombobox is in once the selected value changed... I also trie onclientselectedindexchanged but I got the same issue - wa not sure how to get teh parent cell
How would you get the parent cell of RadComboBox in a OnClientDropDownClosedHandler?
This is is an ItemTemplate in a RadGrid
<telerik:RadComboBox ID="TerritoryManagerRadComboBox" runat="server" onclientdropdownclosed="OnClientDropDownClosedHandler">
function
OnClientDropDownClosedHandler(sender, eventArgs) {
// here I want to get the cell object
}
I 'd like to get this in javasscript and sender.Parent does not work... What is the correct synthax if any or is there another way to acheieve this? I need the cell object to modify the cell style the radcombobox is in once the selected value changed... I also trie onclientselectedindexchanged but I got the same issue - wa not sure how to get teh parent cell