08-27-04 11:07 PM
Is there any way for me to disable the ability to drag and drop between plac
e
holders in authoring mode. I have tried a bunch of different javascripts.
These stop dragging inside place holders but I can't stop when someone drag
from one to the other.
pActiveHtmlEditor.dom.onkeypress = new Function("return disabled();");
pActiveHtmlEditor.dom.oncontextmenu = new Function("return disabled();");
pActiveHtmlEditor.dom.onkeydown = new Function("return disabled();");
pActiveHtmlEditor.dom.ondragstart = new Function("return disabled();");
function disabled()
{
return false;
}
Thanks for any help
Jon
[ Post a follow-up to this message ]
|