Hi,
I need to make an app where to let user to customize the toolbar in fckeditor. I don't want to change the defauilt fckconfig.js, so I want to create a custom config file where I'll create the definition for customized toolbar
However, it seems I cannot manage to make fckeditor to find the custom config file.
I placed custom config file in root dir of the app
I tried
fckeditor.CustomConfigurationFile = "~/myconfig.js";
fckeditor.CustomConfigurationFile = "/myconfig.js";
fckeditor.CustomConfigurationFile = "../../../../../myconfig.js";
fckeditor.CustomConfigurationFile = "myconfig.js";
But nothing seems to works
How can I access it?
Thank you