alfonsoml wrote:You just need to use the embedding method and put it inside your "modal pop-up"
Can you provide a link to the documentation or page where this exists? I'm loading CKFinder inside a jquery ui modal window and when I click on the Browser Server, I'd like it to open a new modal window. But I don't see any info anywhere about "the embedding method".
When I used ckeditor on bootstrap modal ckeditor is not working at all, but when I used same code inside body every thing was working fine. Can you explain why this happened and how do I show ckeditor on modal too.
Re: Is it possible to display CKFinder in a modal pop-up?
Re: Is it possible to display CKFinder in a modal pop-up?
Can you provide a link to the documentation or page where this exists? I'm loading CKFinder inside a jquery ui modal window and when I click on the Browser Server, I'd like it to open a new modal window. But I don't see any info anywhere about "the embedding method".
Thanks so much.
CKEditor is not working on bootstrap modal
Hi,
When I used ckeditor on bootstrap modal ckeditor is not working at all, but when I used same code inside body every thing was working fine. Can you explain why this happened and how do I show ckeditor on modal too.
Inside Modal:(Not working at all)
<div class="control-group">
<div class="controls" style="margin-left:0">
<div id="td_body_email">
<textarea class="span12 ckeditor m-wrap" name="body_mail" id="body_mail">
{$body_contents}
</textarea>
</div>
</div>
</div>
Inside Body:(Working fine)
<div class="controls" style="margin-left:0">
<div id="td_body_email">
<textarea class="span12 ckeditor m-wrap" name="body_mail" id="body_mail">
{$body_contents}
</textarea>
</div>
</div>
</div>
Thanks in advance.