neokoenig / jQuery-gridmanager

A way of building rows and grids with built in editable regions; requires jQuery, jQueryUI, Bootstrap 3.x, & optional TinyMCE or CKEditor
http://neokoenig.github.io/jQuery-gridmanager/
461 stars 129 forks source link

How to add a custom file browser in ckeditor? #56

Closed purplegend closed 9 years ago

purplegend commented 9 years ago

In ckeditor, is very simple integrate a custom file browser as descripted here: http://docs.ckeditor.com/#!/guide/dev_file_browse_upload. How could integrate this in gridmanager?

neokoenig commented 9 years ago

You've got a couple of options:

1) Use custom js config file for CKEditor (http://neokoenig.github.io/jQuery-gridmanager/demo/ckeditor-custom.html) which would allow you to override the default CKeditor configuration and add whatever ckeditor: { customConfig: "/pathtojs/custom-ckeditor.js" }

2) Use something like CKFinder, and just trigger CKFinder in a custom button in gridmanager - you basically would create a link to open /ckfinder/ckfinder.html?action=js

neokoenig commented 9 years ago

Closing, but feel free to reopen if this wasn't the case.