I'm sure the answer is out there, but my searches have not turned it up. Currently I have a RadGrid with a details table below it. Inside of that details table I have an EditFormsSettings.
Currently it loads fine, because I have the event on the main grid ItemDataBound look for a GridEditableItem and updates it appropriately.
What I want to do is whenever the SelectedIndex Changes on the combo box, I want to update the label inside of that edit template. How can i do this?
Thanks
<
EditFormSettings
EditFormType
=
"Template"
>
<
FormTemplate
>
Select from combobox: <
telerik:RadComboBox
ID
=
"ComboBox1"
runat
=
"server"
DataSourceID
=
"edsSource"
AutoPostBack
=
"true"
OnSelectedIndexChanged
=
"ComboBox1_SelectedIndexChanged"
DataTextField
=
"Name"
DataValueField
=
"Id"
/>
<
br
/>
Label: <
asp:Label
ID
=
"Label1"
runat
=
"server"
/>
</
FormTemplate
>
</
EditFormSettings
>
Currently it loads fine, because I have the event on the main grid ItemDataBound look for a GridEditableItem and updates it appropriately.
What I want to do is whenever the SelectedIndex Changes on the combo box, I want to update the label inside of that edit template. How can i do this?
Thanks