The library provides 4 predefined skins:
To set the skin for a dhtmlxPopup object, use the setSkin method.
var myPop = new dhtmlXPopup();
myPop.setSkin("dhx_web");
"material" | "dhx_skyblue" | "dhx_web" | "dhx_terrace" |
---|---|---|---|
The following priority (from higher to lower) is used to determine the skin to apply:
For example, if you include on the page the only css file - "dhxpopup_dhx_terrace" - and instantiate dhtmlxPopup without specifying the skin parameter, then the "dhx_terrace" skin will be detected automatically.
Back to top