i would like to know hot to get the select on the same line of buttons.
<div id="commands">
<a data-role="button" data-inline="true">Button</a>
<a data-role="button" data-inline="true">Button</a>
<a data-role="button" data-inline="true">Button</a>
<a data-role="button" data-inline="true">Button</a>
<a data-role="button" data-inline="true" data-rel="dialog">Button</a>
<a data-role="button" data-inline="true" data-rel="dialog">Button</a>
<a data-role="button" data-inline="true" data-rel="dialog">Button</a>
<select id="select-scenari" data-theme="f" data-inline="true">
<option value="manuale">Option</option>
<option value="fuori-casa">Option</option>
<option value="party">Option</option>
</select>
<a data-role="button" data-inline="true">Button</a>
</div>
As you can see all buttons are on the same line (except if the window is too small) but not the select.
If you change the select to a button everything is ok.
How can i make the select to appear on the same line?
Thanks a lot!
I looks as though
data-inline="true"is only recognized on theatags in your example. By applying the same classes to the div that wraps the select, you can achieve the same result:http://jsfiddle.net/H9W2d/2/