I have a simple grid used for CRUD operations and all of a sudden I noticed it stopped working for both Inserts and Updates (dunno about deletes). If I click Add New Record and type in my info and then click Insert, my breakpoint in my InsertCommand method is not even hit. However if I repeat this action all works as normal. So if the user inserts the record twice, the second attempt will work.
<telerik:RadGrid ID="ApplicationGrid" runat="server" AutoGenerateColumns="False"
GridLines="None" AllowAutomaticInserts="True" AutoGenerateDeleteColumn="True"
AutoGenerateEditColumn="True" OnNeedDataSource="ApplicationGrid_NeedDataSource"
OnInsertCommand="ApplicationGrid_InsertCommand" OnUpdateCommand="ApplicationGrid_UpdateCommand"
OnDeleteCommand="ApplicationGrid_DeleteCommand" OnItemDataBound="ApplicationGrid_ItemDataBound">
<MasterTableView EditMode="InPlace" CommandItemDisplay="Top" DataKeyNames="Id">
Any help is appreciated.
Thanks,
Scott