<telerik:GridTemplateColumn UniqueName="MyColumn" DataField="MyColumn"> <ItemTemplate> <telerik:RadComboBox ID="rcbMyList" runat="server" OnClientSelectedIndexChanged="MyListChanged" > </telerik:RadComboBox> </ItemTemplate> </telerik:GridTemplateColumn>A master view of a gird is set to EditMode="InPlace" and InsertItemDisplay="Bottom". Suppose a new row has been added by clicking a button and the new row looks like just another "existing" row.
What I need is, updating other elements in the new row when the index of a combo box in the new row is changed, and all things should be done at client side.
I tried to set up a client event handler but I don't know how to get the elements in the new row in my event handler (javascript). I would say my javascript works for existing rows - I can get any row from the object "sender.get_parent()" - but it doesn't work for the new row.
Any idea about this problem?
--Y. Fan