DhtmlxWindow render with json bug /dhtmlxSuite_v25_pro_91111

dhtmlxSuite_v25_pro_91111 version
dhtmlxwindow rendering with json has a bug while centering

win.center = function()
{
that._centerWindow(this, false);
};

this code is directly called from resmap[a]; block. The code doesnt check obj[a], if it is false.

Regards

for a temprorary personal fix i changed check to this. I know this is not a good solution it is just a solution.

if (map[a] == ‘center’){
if (obj[a]== true){resmap[a];}
}else{
resmap[a];
}

ok i removed this tags inside my json data this fixed my bugs.