Hello!
The same situation here. I need to change the Text of some Lables inside the Edit Form according to the selected Value of a comboBox for example. Is that possible?
I´m using a template for my edit form. I can register for the Init Event of the Combo inside my template, and tried to register for the "onselectedindexchanged" event too, but it does not fire until the edit form is closed.
Any Ideas?
<Templates>
<EditForm >
<asp:Table ID="Table1" runat="server">
<asp:TableRow>
<asp:TableCell>
<dxe:ASPxLabel ID="ASPxLabel2" Text="TransferMode" Width="50" runat="server" />
</asp:TableCell>
<asp:TableCell>
<dxe:ASPxComboBox OnInit="comboTransferModeInit" onselectedindexchanged="comboTransferModeInit_SelectedIndexChanged" ID="combo_transferMode"
runat="server" Value='<%# Bind("TransferMode") %>'
ValueType="System.String" >
</dxe:ASPxComboBox>
[...]