ruby on rails - CKEDITOR toolbar is not showing up fully -
i getting weird behavior using ckeditor rails, tried both of gems : ckeditor gem , ckeditor_rails gem in different app have (rails v4.2.0 , rails v4.2.1 , rails v4.2.2)
i have text id="ck"
<p contenteditable="true" id="ck">some dummy text</p>
and using inline editing option
$(document).ready(function(){ ckeditor.disableautoinline = true; ckeditor.inline("ck"); });
in rails 4.2.1 , 4.2.2 noticed toolbar not show buttons, while show buttons (i mean full toolbar) rails 4.2.0
so hypotheses there maybe bugs within the last versions of rails... created new gemset , installed rails 4.2.0 see if still work, doesn't !
i not sure what's wrong... hope can help
for land on page searching answer. plugin needs used on div element , not on p element; here same issue tinymce tinymce align text buttons don't work on inline editing
thanks pointing me here bro.
Comments
Post a Comment