Hi,
I have a very strange issue. We are using RadGrid and TemplateColumns which contain item and editItem nodes. One column is a RadComboBox, the Other a RadTextBox (both for editItemTemplate)
When I select a drop down item from RadComboBox (selectedIndex > 0) and then click into the RadTextBox, the RadComboBox selected value resets to SelectedIndex = 0 showing the first item in the comboBox. Here are the Grid nodes
<telerik:GridTemplateColumn HeaderText="Form Title">
<ItemTemplate>
<asp:HyperLink ID="frmLnk" runat="server"></asp:HyperLink>
</ItemTemplate>
<EditItemTemplate>
<telerik:RadTextBox ID="txtTitle" runat="server"></telerik:RadTextBox>
</EditItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="Application">
<ItemTemplate>
<asp:Label ID="lblApplication" runat="server" Text="" ></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<telerik:RadComboBox ID="rcbApplications" runat="server">
</telerik:RadComboBox>
</EditItemTemplate>
</telerik:GridTemplateColumn>
No client script is being used, but it sure acts as if this is the case. The instant I click into the RadTextBox (ID txtTitle), the selected index of RadComboBox rcbApplications resets to zero. Any ideas out there what I am doing wrong?
I have a very strange issue. We are using RadGrid and TemplateColumns which contain item and editItem nodes. One column is a RadComboBox, the Other a RadTextBox (both for editItemTemplate)
When I select a drop down item from RadComboBox (selectedIndex > 0) and then click into the RadTextBox, the RadComboBox selected value resets to SelectedIndex = 0 showing the first item in the comboBox. Here are the Grid nodes
<telerik:GridTemplateColumn HeaderText="Form Title">
<ItemTemplate>
<asp:HyperLink ID="frmLnk" runat="server"></asp:HyperLink>
</ItemTemplate>
<EditItemTemplate>
<telerik:RadTextBox ID="txtTitle" runat="server"></telerik:RadTextBox>
</EditItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="Application">
<ItemTemplate>
<asp:Label ID="lblApplication" runat="server" Text="" ></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<telerik:RadComboBox ID="rcbApplications" runat="server">
</telerik:RadComboBox>
</EditItemTemplate>
</telerik:GridTemplateColumn>
No client script is being used, but it sure acts as if this is the case. The instant I click into the RadTextBox (ID txtTitle), the selected index of RadComboBox rcbApplications resets to zero. Any ideas out there what I am doing wrong?