Hi I am stuck on something which is frustrating mehopefully someone can help me out here, I have a Telerik grid with an Edit popup form. I have enabled automatic updates and inserts. For some reason the update on the page works but when I try to do an Insert
the button just stays there and does nothing. It does not go into the object data source Inserting event in the codebehind?? I dont understand what could be causing this, I thought initially it might be a client side function or even validation and i took them off still nothing. The update works fine but nothing happens when I click on insert. I tried the "UseSubmitBehaviour" set to false as well since im not submitting client side. Can someone give me an idea what could be causing this, Here is what the submit button looks like, I am using it similarly on all the other pages and its working fine. Thanks looking forward to some guidance!
the button just stays there and does nothing. It does not go into the object data source Inserting event in the codebehind?? I dont understand what could be causing this, I thought initially it might be a client side function or even validation and i took them off still nothing. The update works fine but nothing happens when I click on insert. I tried the "UseSubmitBehaviour" set to false as well since im not submitting client side. Can someone give me an idea what could be causing this, Here is what the submit button looks like, I am using it similarly on all the other pages and its working fine. Thanks looking forward to some guidance!
<asp:Button ID="BtnSubmit" UseSubmitBehavior="false" CausesValidation="true" Text='<%# (Container is GridEditFormInsertItem) ? "Insert" : "Update" %>' runat="server" CommandName='<%# (Container is GridEditFormInsertItem) ? "PerformInsert" : "Update" %>' ></asp:Button> <asp:Button ID="BtnCancel" Text="Cancel" runat="server" CausesValidation="false" CommandName="Cancel" ></asp:Button>