webix.ui container property use anything else except id

in my project i have id properties which contain : to each html element on page. When try to use container property I get error message. Is there a way to use container property as like a jQuery selection by class name something like this $(".className") to create a webix element inside selected div? Thanks

try element.querySelector

{
    container: document.querySelector(".className")
}

no error in console but nothing have to appear on the web page

when comment this line everything works fine

ok it add webix element but there no display on page

https://snippet.webix.com/31d45beo

thanks it work!