Dhtmxleditor - problem with setIconsPath

Hi,

I 'm using dhtmlxEditor with the next simple code :

I cannot have the images in the editor whereas all includes (js and css) seems to be correct .

All is going on as if the setIconsPath is not working.

Thanks for answer in adavance


Hello

try to use dhtmlx.image_path to set image path instead of setIconsPath:

dhtmlx.image_path = foldericoneditor;
var editor = new dhtmlXEditor(“editorObj”);

Hello,

your solution works fine if you respect, as you wrote, the order :
1- dhtmlx.image_path = foldericoneditor;
2- var editor = new dhtmlXEditor(“editorObj”);

thanks