Hi,
I'm Ramkumar. I'm using CK Editor in my web application. In IE browser It works fine, but in Firefox browser the checkbox context menu will not appear. (ie) when right click on the checkbox control the properties menu will not appears, but it will work's fine in IE.
Even I'm trying in CK Editor site demo page itself. I'm getting the same. I think the bug in CK Editor. I'm tying to fix this issue, but I can't.
Let any one help to fix this issue.
Thanks in advance.
Regards,
R.Ramkumar
I'm Ramkumar. I'm using CK Editor in my web application. In IE browser It works fine, but in Firefox browser the checkbox context menu will not appear. (ie) when right click on the checkbox control the properties menu will not appears, but it will work's fine in IE.
Even I'm trying in CK Editor site demo page itself. I'm getting the same. I think the bug in CK Editor. I'm tying to fix this issue, but I can't.
Let any one help to fix this issue.
Thanks in advance.
Regards,
R.Ramkumar

Re: Bug in CK Editor. Can any one fix this....
The problem is that Firefox doesn't send the context menu event for several elements, and so the editor doesn't know that you want to edit it. It's related also to the problems while trying to edit with the toolbar buttons.
Re: Bug in CK Editor. Can any one fix this....
Consider the following code - it works correctly in FF...
<input id="myinput" type="checkbox"/> <script> document.getElementById("myinput").oncontextmenu = function () {alert('hello')} </script>Re: Bug in CK Editor. Can any one fix this....
Re: Bug in CK Editor. Can any one fix this....
<input id="myinput" type="checkbox"/> <script> document.designMode = 'On'; document.getElementById("myinput").oncontextmenu = function () {alert('hello')} </script>Re: Bug in CK Editor. Can any one fix this....
I'm having the same problem with context menu not appearing for certain elements.
Has/Will this problem ever be fixed?. Or is there a known work-around for this problem?
Thanks in advance!!!