Dear Sir,
I want to know that is there any control available in telerik which is similar to asp.net DetailsView where we can only Insert/Update record.
I know that in telerik grid we can insert as well as update nicely but it always comeup with multiple row.
Protected
Sub menu_MenuItemClick(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.MenuEventArgs) Handles Tabs.MenuItemClick
Dim
ucName As String = ""
Select
Case menuTabs.SelectedValue
Case "A"
ucName =
"~/UserControlA.ascx"
Case "B"
ucName =
"~/UserControlB.ascx"
End Select
'phCurrentUC is a placeholder control
phCurrentUC.Controls.Clear()
If Not String.IsNullOrEmpty(ucName) Then
Dim ucToLoad As Control = LoadControl(ucName)
phCurrentUC.Controls.Add(ucToLoad)
End If
End Sub
When click on combobox, I get "The target xxx$radcombox1' for the callback could not be found or did not implement ICallbackEventHandler."