I am adding elements inside a ListView. I want to have control over the size and position of a button in the row. I can freely move the button but can't move it to the top part even though I set the top property to 0.
Also is it possible to make the particular ListView row bigger?
<div data-role="content">
<div id="myCustomCell" >
<ul id="myCustomGroup" data-role="listview" data-inset="false" >
<li id="myCustomRow1">
<a href="#">
<fieldset data-role="fieldcontain" id="ui-mato"><input type="button" id="ui-mato" name="mato" value="Mato" /></fieldset>
</a>
</li>
</ul>
</div>
The JavaScript modifying the CSS:
$("#ui-mato").css({
'position':'relative',
'left':'70.0px',
'top':'0px',
'width':'150.0px',
'height':'38.0px',
'line-height':'38.0px'
});