You can customize the CSS element of the search filter so that it is fixed in the viewport.
#my-wrapper {
padding-top : 45px;
}
#my-wrapper form {
position : fixed;
top : 15px;
left : 15px;
width : 100%;
z-index : 1;
}
You will notice the selector #my-wrapper, I used it to be able to configure only search input for a specific listview widget. My HTML looks like this:
<div id="my-wrapper">
<ul data-filter="true" data-role="listview">
...
</ul>
</div>
- listview , . jQuery Mobile - DOM listview.
: http://jsfiddle.net/vmndx/