setSkin
sets skin for a form
void setSkin(string skin);
skin | string | the skin you want to set |
Example
myForm.setSkin("dhx_web");
Details
Available values:
- "dhx_skyblue" (default value)
- "dhx_web"
- "dhx_terrace"
The priority of setting the skin
- Form gets the skin specified in the form object constructor (3rd parameter);
- Form gets the skin set by global "dhtmlx.skin";
- Form tries to automatically detect the skin by analyzing the included css files (if there are any, applies the last one);
- Form gets the "dhx_skyblue" skin.
Back to top