Hi Team ,
How can we customize the radio buttons using standard radio view.
Below is what we are using for now.
{ view:“radio”, options:[“1.0”, “1.5”, “2.0”], align:“center”, width:180 },
Can we customize radio buttons look and feel ?
Hi Team ,
How can we customize the radio buttons using standard radio view.
Below is what we are using for now.
{ view:“radio”, options:[“1.0”, “1.5”, “2.0”], align:“center”, width:180 },
Can we customize radio buttons look and feel ?
Hi,
you did not specify what you want to change in radio styles. You learn css rules that are applied to elements of radio view via Dev Tools of your browser. If you want to apply styling that is specific to a certain view and leave other radio views as they are, you can use “css” property in view config and define css style relative to classname in this property
js:
{ view:"radio", css: "my_radio", ...}
css:
.my_radio .webix_inp_label {
color: red;
}