Hi,
I want to have a ajax postback raised when the contents of an editor control changes.
I have set up the OnTextChanged event for the editor control but as expected it is not being called as there is no postback happening, what is the best way to raise an ajax request when the controls contents change on the client side?
something along the lines of .....
function editorload(editor)
{
editor.attachEventHandler("onkeydown", checkkeypress);
}
function checkkeypress(e)
{
//ajax postback here
}
Thanks in advance
Mac