I'm using a RadEditor inside my own user control (*.ascx) and I have set it's onClientLoad as:
<script type=
"text/javascript"
>
function
OnClientLoad(editor, args) {
debugger;
alert(
'hi'
);
}
</script>
it is rarly fired as I refresh the page.
at times that it isn't fired I can't use $find("...") as it returns null.
how can I fix this?
thanks in advance.