Apply webix css to text box?

How to apply below css to text box?

webix_el_text input{
         border:none;
    }


 cols: [
               { view: "text", id: "txtReleases", autowidth: true, css:"webix_el_text" }
         ]

@Sakeer_Hussain

Do you want like this?
https://snippet.webix.com/8qkouf7v

If not please clarify your requirement.

Any style in Webix components can be modified with a proper CSS selector.

css property adds a class name to the top node of the component. We recommend setting new classes with names different from “system” Webix classes.

But if you need to redefine the style for all relevant widgets, you can just redefine the definitions of the needed class. To see how it works, just remove .no_border from the CSS selector in the following sample:

https://snippet.webix.com/ty9bpn37

Exactly, Thank you Meera

:slight_smile: