Need HTML ID in Webix UI Controls

Hello,

for some reasons I would like to change the visual appearance of some Webix UI controls I used in my web app. Unfortunately it seems, that Webix does not apply any HTML ID’s to the main UI elements (like < … id=“mykanban”>). Instead these elements have an view_id, which I can’t use in my desired CSS selectors.

How can I get proper HTML ID’s in my UI elements? Using the view_id for the HTML ID would be a perfect solution, but any other ideas are also welcome.

Regards,
Markus

view_id, which I can't use in my desired CSS selectors
did you try [view_id="$viewid"]?

Thanks for your solution. Well, yes, we could probably do it this way, but actually we would prefer the convenient way, like #view_id { … }.

Maybe we will apply pseudounique css classes to the webix ui controls, but in terms of CSS usage we really would appreciate to have common HTML ID’s applied to the webix elements.

Not sure about what’s the best strategy. Any thoughts?

preferred is setting config->css property
https://docs.webix.com/api__link__ui.view_css_config.html

Yes, that’s how we do it! Thanks.