I am using the latest RadControls for Ajax (RadControls_for_ASP[1].NET_AJAX_2008_2_723_dev.exe)
I have added an Eitor control to my page and added an Insert Table Control to the Toolbar. I want the user to be able to insert a table then right-click on the table to add a new row etc.
This does not work.
However, if I add another Editor Control to the page with an empty Tools Collection, a default set of tools is added at run-time (including the Add Table control) and in this case I CAN insert a table and I CAN display a context menu by right-clicking the inserted table.
Can you advise me how I can get the context menu to work in the first scenario?
I have added an Eitor control to my page and added an Insert Table Control to the Toolbar. I want the user to be able to insert a table then right-click on the table to add a new row etc.
This does not work.
However, if I add another Editor Control to the page with an empty Tools Collection, a default set of tools is added at run-time (including the Add Table control) and in this case I CAN insert a table and I CAN display a context menu by right-clicking the inserted table.
Can you advise me how I can get the context menu to work in the first scenario?
<
body>
<form id="form1" runat="server">
<div>
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
</telerik:RadScriptManager>
<br />
<%
-- Context menu DOES work --%>
<telerik:RadEditor ID="RadEditor1" runat="server">
</telerik:RadEditor>
<%
-- xxxxxxxxxxxxxx --%>
<br />
<%
-- Context menu DOESN'T work --%>
<telerik:RadEditor ID="RadEditor2" runat="server">
<Tools>
<telerik:EditorToolGroup Tag="new">
<telerik:EditorTool Name="InsertTable" />
</telerik:EditorToolGroup>
</Tools>
<Content>
</Content>
</telerik:RadEditor>
<%
-- xxxxxxxxxxxxxx --%>
<br />
</div>
</form>
</
body>