Edit and Insert mode loses focus after tab from checkbox column and dropdown. It works fine after I I click on next textbox field, but it has problems with this transition.
Is there a way to
Here are my columns that give me problems:
Is there a way to
Here are my columns that give me problems:
...
<rad:GridCheckBoxColumn DataField="ContentFull" DataType="System.Boolean" UniqueName="ContentFull">
...
<rad:GridTemplateColumn UniqueName="Reason">
<ItemTemplate>
</ItemTemplate>
<EditItemTemplate>
<asp:DropDownList ID="ddlAdjustmentReason" runat="server" DataSourceID="EntityDataSource2"
AppendDataBoundItems="True" DataValueField="AdjustmentCodeID" DataTextField="AdjustmentDescription">
<asp:ListItem Value="" Text="" />
</asp:DropDownList>
</EditItemTemplate>
</rad:GridTemplateColumn>
....