genericatz
genericatz

Reputation: 425

Button not on the right side of text input since jquery mobile 1.2.0

After upgrading to jquery mobile 1.2.0 I can't put the button on the right side of the text input field.

<div data-role="fieldcontain">
        <fieldset data-role="controlgroup" data-type="horizontal">
             <input type="text" data-inline="true"/>
             <button data-inline="true" data-theme="b">Send</button>
         </fieldset>
</div>

Upvotes: 1

Views: 1863

Answers (1)

genericatz
genericatz

Reputation: 425

I fixed that removing the data-type="horizontal" and added a class with style="float: right;" to the button.

Upvotes: 2

Related Questions