I have a vb.net 20.0 WebPage.
I'm using Telerik.Web.UI version 2008.3.1314.20
The RadGrid on the page contains a RadComboBox SEE DECLARATIVE CODE BELOW
I click the Add in the CommandItemDisplay, to add a new record. The RadCombo displays the right data.
After I select an item and mouse down on the insert, it resets the RadComboBox. The item I
selected is no longer selected. Anyone know how to correct this for a RadComboBox in an EditItem Template?
Thanx
Steve
I'm using Telerik.Web.UI version 2008.3.1314.20
The RadGrid on the page contains a RadComboBox SEE DECLARATIVE CODE BELOW
I click the Add in the CommandItemDisplay, to add a new record. The RadCombo displays the right data.
After I select an item and mouse down on the insert, it resets the RadComboBox. The item I
selected is no longer selected. Anyone know how to correct this for a RadComboBox in an EditItem Template?
Thanx
Steve
<
Columns>
<telerik:GridTemplateColumn DataField="USERNAME" HeaderText="USERNAME" UniqueName="USERNAME">
<EditItemTemplate>
<telerik:RadComboBox ID="rdUSERNAME" runat="server" DataSourceID="ODSUsers"
DataTextField="USERNAME"
DataValueField="USERID" OnSelectedIndexChanged="rdUSERNAME_SelectedIndexChanged">
<CollapseAnimation Duration="200" Type="OutQuint" />
</telerik:RadComboBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="USERNAMELabel" runat="server" Text='<%# Eval("USERNAME") %>'></asp:Label>
</ItemTemplate>
</telerik:GridTemplateColumn>
</Columns>
</telerik:GridTableView>