I want to add an onkeyDown event to the editor. Where must u put the:
onKeyDown="alert('Some Key is down');
I also like to know if it is possible to use a function that can place the content in the editor. Something like
objContent.value='Some <I>text</I> that I a want to put in it';
I'd very much appreciate your help.
Christiaan Westerbeek
onKeyDown="alert('Some Key is down');
I also like to know if it is possible to use a function that can place the content in the editor. Something like
objContent.value='Some <I>text</I> that I a want to put in it';
I'd very much appreciate your help.
Christiaan Westerbeek
RE: Add onChange event. Need help.
RE: Add onChange event. Need help.
RE: Add onChange event. Need help.
Only the question about events is open.
Question about accessing the content of the editor is already answered in thread https://sourceforge.net/forum/forum.php ... _id=257180
RE: Add onChange event. Need help.
Fred?
RE: Add onChange event. Need help.
Tried the ondrop event. Didn't work with me also.
RE: Add onChange event. Need help.
<SCRIPT language="javascript" event="onkeydown" for="objContent">
<!--
alert("keydown fired baby!");
//-->
</SCRIPT>
RE: Add onChange event. Need help.
Wouldn't it be great if would could specify event handlers in the tag (I'm using the ASP.NET version), something like this:
<FredCK:FCKeditor id="FCKeditor1" height="300" runat="server" onchange="parent.markDirty()"> </FredCK:FCKeditor>
Love the editor though. Great job!