Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for .NET
»
Re: capturing clicks on client side
Re: capturing clicks on client side
03-17-2007, 12:24 PM
ziv
Joined on 09-26-2006
Posts 15
Re: capturing clicks on client side
Reply
Quote
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
View Complete Thread