Re: capturing clicks on client side

  •  03-17-2007, 12:24 PM

    Re: capturing clicks on client side

    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