|
Browse by Tags
All Tags » javascript » Rich Text Editor
-
I've made a custom control that behaves like Bold Italic and Underline. The only thing I need is to make the UI change wenever focussed.
I have the following setup in the ...
-
Is it possible to get the first node from editor.GetRangePreviewHTML(); or get the selected node from the editor.
I have made a custom element so to speak and I want to check the selection so that when you select this element you still get the same dialog but you edit the node instead of wrap it with the same node.
For example I have ...
-
function RichTextEditor_OnLoad(editor)
{
alert("onload: " + editor._config.uniqueid);
editor.SetText(Controller.RTEAddOn_RTEField.value);
}
function ...
-
I have an C# ASP.net page that adds the editor programmatically:
protected void Page_Load(object sender, EventArgs e)
{
RTE.Editor ed = new RTE.Editor();
ed.ID = "myEditor";
Page.Controls.Add(ed);
}
This works fine in IE7 ...
|
|
|