if (e.CommandName == RadGrid.InitInsertCommandName)
{
e.Canceled = true;
ListDictionary newValues = new ListDictionary();
newValues["Titles"] = "";
//Insert the item and rebind
e.Item.OwnerTableView.InsertItem(newValues);
}
I am using a FormTemplate. I am not understanding my error, I have been struggling for 2 days, is there no one on this forum that can help me? When I click on the Insert link and click cancel I get the following error:
DataBinding: 'Telerik.WebControls.GridInsertionObject' does not contain a property with the name 'Titles'.
What am I doing wrong? Please can some try and help me??
Thanks
Brendan
rtreeNavigation.Visible =
true;
rtreeNavigation.DataSource = dtChannels;
rtreeNavigation.DataFieldID = dtChannels.Columns[
"FolderId"].ToString();
rtreeNavigation.DataFieldParentID = dtChannels.Columns[
"ParentFolderId"].ToString();
rtreeNavigation.DataTextField = dtChannels.Columns[
"FolderName"].ToString();
rtreeNavigation.DataValueField = dtChannels.Columns[
"FolderId"].ToString();
rtreeNavigation.DataBind();
How to set Tool Tip for Nodes ?
Hi,
I am using GridDropDownColumn inside RadGrid.
1) How can i populate the dropdowncolumn with data during editmode and during insertmode?
2) After populating with data, how can i make certain items in the dropdown as disabled and certain as enabled?
Regards
Sujith


Hi,
Please how can I change the skin of treeview control for ASPNET AJAX?
I want it to be suitable for right to left layout if passable.
Thank you.