Problem with setSkin tabbar

    // method Layout
    Layout: function(){
        var self = this;     
        self.layout = new dhtmlXLayoutObject(Horse.layout.cells('c'), '1C', skin);
    },
    
    // method Tabbar
    Tabbar: function(){
        var self = this;
        self.tabbar = self.layout.cells('a').attachTabbar();
        self.tabbar.setImagePath("/static/dhtmlx/dhtmlxTabbar/codebase/imgs/");
        dhtmlx.skin = skin;
        window.dhx_globalImgPath = "/static/dhtmlx/dhtmlxCombo/codebase/imgs/"; 
        self.tabbar.setSkin(skin);
        self.tabbar.addTab('d1', 'nl', 200);
        self.tabbar.addTab('d2', 'en', 200);
        self.tabbar.addTab('d3', 'pt', 200);
        self.tabbar.setTabActive('d1');
        self.tabbar.attachEvent("onTabClick", function(id){
            var prefix = null;
            if (id == 'd1') {
                prefix = '_nl';
            }else if (id == 'd2') {
                prefix = '_en';
            }else{
                prefix = '_pt';
            }
            self.form[id].getEditor('description' + prefix).editor.contentWindow.document.body.focus();
            return true;
        });
    }

see image please.

Help me?


Hello
Could you provie us completed demo to reproduce this issue?
docs.dhtmlx.com/doku.php?id=othe … leted_demo
If you have PRO suit send this demo on support@dhtmlx.com with a link to this topic

resolved

tabbar.setImagePath(’/foo/path/custom/imgs/’);

thanks