I have a radgrid, bound to a datasource, and AllowAutomaticInserts=True
I have the following in the code behind:
Here's the problem: I still get the edit form after hitting the InsertButton.
(NOTE: Of course this isn't what I want it to ultimately do...but I do need to supress the form for the time being, intending to call InsertItem() later...but I can't ever get to that point because the edit form can't be supressed!)
Thank you,
Steven
I have the following in the code behind:
Protected Sub RadGrid1_InsertCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.InsertCommand<br> If e.CommandName = RadGrid.InitInsertCommandName Then<br> e.Canceled = True<br> End If<br> End SubHere's the problem: I still get the edit form after hitting the InsertButton.
(NOTE: Of course this isn't what I want it to ultimately do...but I do need to supress the form for the time being, intending to call InsertItem() later...but I can't ever get to that point because the edit form can't be supressed!)
Thank you,
Steven