How to fix this layout issue in JQuery Mobile -
i created popup listview inside. applied list filter. however, not correctly formatted. there way can push bit (like list divider be)?
edit: code
<div data-role="content"> <div data-role="popup" id="popupmenu" data-theme="d"> <ul data-role="listview" data-inset="true" id="symptomslist" style="min-width:210px;" data-theme="d" data-filter="true"> </ul> </div> </div>
to best results of jquery mobile styles of contents inside page, dialog, panel or popup, place them inside data-role="content"
.
<div data-role="popup" id="popupmenu" data-theme="d"> <div data-role="content"> <ul data-role="listview" data-inset="true" data-theme="d" data-filter="true"> <!-- list items --> </ul> </div> </div>
Comments
Post a Comment