I have control inculde fck , ID = 'editTopic'. I created myConfig.js, myConfig1.js .
<script language="text/javascript">
function load()
{
var oFCKeditor = new FCKeditor( "editTopic" ) ;
oFCKeditor.Config["CustomConfigurationsPath"] = "../_samples/_plugins/myConfig.js" ;
oFCKeditor.Create() ;
}
window.onload = load();
</script>
But FCK alway get fckconfig.js.
I want account user1 use myConfig.js and default user use myConfig1.js.
<script language="text/javascript">
function load()
{
var oFCKeditor = new FCKeditor( "editTopic" ) ;
oFCKeditor.Config["CustomConfigurationsPath"] = "../_samples/_plugins/myConfig.js" ;
oFCKeditor.Create() ;
}
window.onload = load();
</script>
But FCK alway get fckconfig.js.
I want account user1 use myConfig.js and default user use myConfig1.js.