Am facing an issue with my ckeditor. Am loading an entire page of html in to the ckeditor. Its loading and showing fine. I want to let users to edit only the data (texts). Not its alignment. But in editor each div is draggable. (Like the textbox in office word). How can I locked this areas.

-Arun

link|improve this question

31% accept rate
feedback

3 Answers

You might consider using Jeditable instead of ckeditor. That way you can individually allow users to edit each text block.

link|improve this answer
Thats great. I will consider that for my next project. But I googled for the above solution, and somebody says put a span around the div with class 'Locked'. But thats not working in all cases. Now I just want to disable draging. – Arun SS Mar 9 '11 at 11:21
feedback

I've used the following JS code before to disable text selection. You might be able to use it to bind to the div/whatever holds the ckeditor instance. Note that this would also prevent the user from being able to select text (for instance to copy/cut/etc).

// From http://chris-barr.com/entry/disable_text_selection_with_jquery/
$(function(){
    $.extend($.fn.disableTextSelect = function() {
        return this.each(function(){
            if($.browser.mozilla){//Firefox
                $(this).css('MozUserSelect','none');
            }else if($.browser.msie){//IE
                $(this).bind('selectstart',function(){return false;});
            }else{//Opera, etc.
                $(this).mousedown(function(){return false;});
            }
        });
    });
    $('.noSelect').disableTextSelect();//No text selection on elements with a class of 'noSelect'
});
link|improve this answer
I dont want to block the text selection. I just want to disable the draging of div or span elements in the content. – Arun SS Mar 9 '11 at 12:16
@Arun, I believe the text select will prevent the dragging from taking place as you want but yes, a side effect is that you can't select text any more. – Blair McMillan Mar 9 '11 at 12:19
Thats not helps. – Arun SS Mar 9 '11 at 13:43
Ok, it was just an option for you. – Blair McMillan Mar 9 '11 at 14:17
feedback

Have you added custom styles to the div element? In my case, the problem was that I had some styling - especially overflow: hidden. Removing the overflow, height and min-height rules helped for me: the handles disappeared.

Note that you can still add the rules where you actually display the content.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.