Hi
I have coded the following per http://www.telerik.com/help/aspnet/grid/grddifferenteditformsoneditandinsert.html , but this url is not to the Ajax help, and I can not find a similar page under Ajax help:
Protected Sub RadGrid1_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.ItemCommand
If (e.CommandName = RadGrid.InitInsertCommandName) Then
e.Canceled = True
RadGrid1.EditIndexes.Clear()
e.Item.OwnerTableView.EditFormSettings.UserControlName = "~/uc/InvoiceAdd.ascx"
e.Item.OwnerTableView.InsertItem()
End If
End Sub
When I run it, does not insert the user control into the insert template. Is this still supported? Or am I not doing enough?