Re: How do I disable the table cell handle in Firefox Midas editor?
Jing Ceawlin <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.editor |
|---|---|
| Organization | http://groups.google.com |
| Message-ID | <[email protected]> |
Finally know how it works Take a lot this page: http://dev.fckeditor.net/browser/FCKeditor/trunk/editor/_source/classes/fckeditingarea.js?rev=445 Scroll down to the MakeEditable function. In it we have oDoc.execCommand( 'enableInlineTableEditing', false, ! FCKConfig.DisableFFTableHandles ) ; That will do the magic. Cheers