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> 

the filter items field not positioned

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> 

demo


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -