TABLET and MOBILE button dimension

There is a way to change button,combo, ecc dimension(height,width)
dinamically when is mobile phone or tablet?

You can assign CSS classes to the controls, and define different rules based on media query. Still, it can affect the styling only ( colors, fonts, etc. ) The size of a control is defined in js code and will not be affected by css.

There are two approaches to dynamical sizing.

a) do not specify width or height at all, in such case widget will adjust to screen automatically.

b) if you have a fixed width or height value, you can change it through JS API in any moment of time

$$("b1").define("width", 100);
$$("b1").resize();

there is a way to use css @media-rule specific for button,combo … ecc
THX

thx very much