css
adds style classes for the component
css?: string;
Example
const dhxWindow = new dhx.Window({
title: "Window",
css:"my_first_class my_second_class"
});
dhxWindow.show();
Related sample: Window. Styling (custom CSS)
Note, that the DHTMLX library provides a set of own CSS classes that you can also apply to change the appearance of Window:
const dhxWindow = new dhx.Window({
title: "Window",
css:"dhx_window--bordered"
});
dhxWindow.show();