What I would like to do is use a custom asp modal popup box on the perform insert command on a radgrid. It works as I have it but the problem is that the grid also opens up to insert data as well, but only the data in my needdatasource statement. Is there a way to block this from opening and only open my modal popup.
I know I could use a template commandline but am trying to use built in radgrid items as its less code and looks cleaner.
I know I could use a template commandline but am trying to use built in radgrid items as its less code and looks cleaner.
Protected Sub myRadGrid_ItemCommand(sender As Object, e As GridCommandEventArgs) Handles myRadGrid.ItemCommand
If (e.CommandName = RadGrid.InitInsertCommandName) Then
pnlRegions_MPE.Show()
End If
End Sub