Thank you for your answer, wiktor. And yes, there are two different instances. Your solution would definitely solve my problem... but... What I need to do is two different popups just like the popups in _samples directory. There's no problem with that using Javascript. But how can I do these popups with each one having different configuration?
function BrowseServer( startupPath, functionData )
{
// You can use the "CKFinder" class to render CKFinder in a page:
var finder = new CKFinder();
function BrowseServer( startupPath, functionData, id )
{
// You can use the "CKFinder" class to render CKFinder in a page:
var finder = new CKFinder();
finder.id = id;
Re: Various image dimensions
viewtopic.php?t=20914
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Various image dimensions
And yes, there are two different instances. Your solution would definitely solve my problem... but...
What I need to do is two different popups just like the popups in _samples directory. There's no problem with that using Javascript. But how can I do these popups with each one having different configuration?
Thanks for your answer
Re: Various image dimensions
Re: Various image dimensions
function BrowseServer( startupPath, functionData ) { // You can use the "CKFinder" class to render CKFinder in a page: var finder = new CKFinder();function BrowseServer( startupPath, functionData, id ) { // You can use the "CKFinder" class to render CKFinder in a page: var finder = new CKFinder(); finder.id = id;BrowseServer
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Various image dimensions
Re: Various image dimensions