or

<telerik:RadGrid ID="RadGrid1" runat="server" AllowSorting="true" AllowPaging="true" PageSize="25" ShowStatusBar="true">
<PagerStyle AlwaysVisible="true" />
<MasterTableView AutoGenerateColumns="true" EditMode="InPlace" />
</telerik:RadGrid>
I check out the below articles and everything needs big chunk of code to make the manipulation work.
http://www.telerik.com/help/aspnet/grid/grdeditmodeinplace.html
http://www.telerik.com/help/aspnet/grid/grdinsertingvaluesinplaceandeditforms.html
I need a plug and play kinda of control for client to work without any big coding.
Vijai

| Product Description: <br /> |
| <span style="font-family: Arial; font-size: 12pt;"> |
| <telerik:RadEditor id="ProductDescription" runat="server" Width="700px" Height="800px" |
| Skin="WebBlue" ToolsFile="~/Includes/BasicTools.xml" OnClientLoad="OnRadEditorClientLoad" |
| EditModes="All"> |
| <SpellCheckSettings AllowAddCustom="true" DictionaryLanguage="en-US" DictionaryPath="~/App_Data/RadSpell" SpellCheckProvider="EditDistanceProvider" /> |
| <CssFiles> |
| <telerik:EditorCssFile Value="~/Includes/EditorContentArea.css" /> |
| </CssFiles> |
| </telerik:RadEditor> |
| </span> |
| <br /> |
| function OnRadEditorClientLoad(editor, args) { |
| //attach to the onkeydown event, check whether the tab key is pressed and paste in the editor |
| editor.attachEventHandler("onkeydown", function(e) { |
| if (e.keyCode == '9') { |
| editor.pasteHtml(" "); |
| if (!document.all) { |
| e.preventDefault(); |
| e.preventBubble(); |
| e.stopPropagation(); |
| } |
| else { |
| e.returnValue = false; |
| e.cancelBubble = true; |
| } |
| } |
| }); |
| } |
CusTree.DataSource = tblDataCusTree.DataTextField = "CUSTOMER_NAME"CusTree.DataValueField = "CUSTOMER_PREFIX"CusTree.DataBind()Dim nd As ITemplate = WipTree.NodeTemplate()Dim nstdNode As New RadTreeNodenstdNode.NodeTemplate = ndFor i As Integer = 1 To CusTree.Nodes.Count - 1 CusTree.Nodes(i).Nodes.Add(nstdNode)Next<telerik:RadTreeView ID="CusTree" runat="server" Skin="Outlook"></telerik:RadTreeView><telerik:RadTreeView ID="WipTree" runat="server" Skin="Outlook"> <NodeTemplate> <iframe id="frm" runat="server" src="http://google.com"></iframe> </NodeTemplate></telerik:RadTreeView>