CSS image maps

can you provide me an example for how to use css image class in radio butons.
One more question Is there a panel class available in webix for creating all components and aligning their position.

(1) CSS image maps are used to provide a hint on HTML elements that built Webix components and their CSS classes.

Still, image maps for some components has undergone changes, so it’s safer to explore element CSS in the inspector.

Radio CSS can be customized the same way it goes with other Webix components:

http://webix.com/snippet/c5bd46f4

(2) Do you mean some kind of a UI designer? No, there isn’t any. Now only Skin Builder tool is available.

This is working ,but i need to know how to use .webix_all_radio css class

There’s no such a class in current Webix - CSS maps are a bit outdated(

The equivalent is .webix_el_group class: http://webix.com/snippet/5f526f93

We will update the documentation as soon as possible, sorry for the inconvenience.

Thank You for the information.Can you help me to create a scrollview like which include radio buttons.

Check
http://webix.com/snippet/e3d08146

one more question how can i get the current value from checkbox and set it in to a grid.Is it possible?

getValue api of checkbox will return its state.

As for setting value to the grid - please provide some more details about the desired functionality. I’m not sure how do you want apply value from the checkbox to a grid.

http://docs.webix.com/api__link__ui.checkbox_getvalue.html

i need to insert the current value from dropdownlist to a grid.Am able to set value in a textarea like that but not able to do it in to a grid.

In datatable you can use

dtable.getItem(id).some = control.getValue(); 
dtable.updateItem(id);

You can use getText instead of getValue if you need to show text of selected options, not the value.

Still am not getting a solution.I am having a grid and a combo box.I need to show the selected element in the combo box at the grid atfter combo selection.Updating a dtable is used when we have something in grid right?My grid is intially empty.

if you need to add new item you can use

dtable.add({ value: control.getValue() })

or load data in the datatable based on control value

dtable.load("data.php?id=" + control.getValue());

i declared a combobox like this
{view:“combo”,id:“bc_cmpny”,label:“Billing Company”,width:250,options:bc}
but am not able to see full labell name,it showing only billing c… why is it so.?

I use css for styling my button,

.bt_1 input:active{ background: #101010 ; }

and declared it using,
{ view:“button”, value: “Search”, inputWidth:100, css:“bt_1”},

but am not getting the style applied,can u help me.

Check

http://webix.com/snippet/3e9d76df

It uses the same code and it actually works (when you clicking the button it takes :active styling )

how can i show a table on a button click