Its due to the reason that, the .js file referenced using relative path:
<ice:inputRichText customConfigPath="js/config.js" .... >
Changing it to absolute fixes the problem.
<ice:inputRichText customConfigPath="/js/config.js" ..... >
The behaviour is changed due to the fix made under the following case:
http://jira.icefaces.org/browse/ICE-4070
Before the above fix, the component was returning the context path even if you use the relative path.
As the config.js will be loaded by the FCKediter API, which reside under sub folders. So to load the custom config file its require absolute path.
Its due to the reason that, the .js file referenced using relative path:
<ice:inputRichText customConfigPath="js/config.js" .... >
Changing it to absolute fixes the problem.
<ice:inputRichText customConfigPath="/js/config.js" ..... >
The behaviour is changed due to the fix made under the following case:
http://jira.icefaces.org/browse/ICE-4070
Before the above fix, the component was returning the context path even if you use the relative path.
As the config.js will be loaded by the FCKediter API, which reside under sub folders. So to load the custom config file its require absolute path.