|
Search
You searched for the word(s):
Showing page 1 of 2 (15 total posts)
< 1 second(s)
-
OK, i have investigated into this problem a bit further:
1st of all, when working on your web site i get it right - the symbols appear just as they should.
the difference is the code. when putting windings symbole in your editor the generated code is span tag with correct font attribute while in my ...
-
thanks adam for your reply.
if i copy-past your characters to my editor i get it allright, but if i insert it through the interface (the special character icon), it get mixed, for example:
- = y
Q = Q
' = '
-
Hi,
When trying to insert a ''special character'' i do not get it properly in the editor but some different character other than the one i picked..
any idea ?
Thanks,
Ziv
-
i'd like to capture the save button on client side with no postBack.
with the following configuration file, i get ''command Save is not supported or not implemented'', when pressing save.
will be happy for your advise.
<toolbars>
<item type=''g_start'' />
<item type=''image'' name=''Save'' ...
-
thanks, found it.
function CuteEditor_OnCommand(editor,command,ui,value){
alert(command);
}
-
in version 5 i've used this code on server side to capture (on client) any click on any toolbar button:
Editor1.Attributes[''oncommand''] = ''return HandleEditorCommand(this)'';
on client side i used to capture the pressed button with:
alert (event.command);
now, in version 6 it does not work..
how to accoplish this ...
-
I need to set a client side onFous event in the editor, every time the user is placing the cursor inside the textual editor's area, some function will run in javascript.
any idea how can i achieve this ?
Thanks,
Ziv
-
Hi,
is there any property that indicates any change in the editor by the client ?
this will let me ask the client to save changes if he/she didn't and would like to quite.
when the client did save changes - i would like to set this ''editorChanged'' property to false again - to be ready for another chage if ...
-
Do not bother, i have found my answeres:
server side:
Editor1.Attributes[''oncommand''] = ''HandleEditorCommand(this)'';
and on client side:
function HandleEditorCommand(editor)
{
alert(event.command.toLowerCase());
}
thanks
-
is there a way i can capture the ''increase/decrease'' editor size (+/-) on client side ?
i'd like to run a javascript function onclick.
can u direct me to a code example where i can capture the save button on client side - i see the examples in this site of this feature but not the code itself.
is there any way i can ...
1
|
|
|