2013-09-24 58 views
1

我創建了一個帶有listview的彈出窗口。我也應用了一個列表過濾器。但是,格式不正確。有什麼辦法可以推動它(就像列表分隔符一樣)?如何解決這個佈局問題在JQuery Mobile

編輯:代碼

<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 is not properly positioned

+0

DIV的數據角色=內容 – Omar

+0

Thx的建議,並沒有工作,雖然總結他們。 – JZweige

+1

不是彈出窗口,它裏面的內容。 – Omar

回答

1

要獲得jQuery Mobile的風格的內頁,對話框,面板或彈出內容達到最佳效果,總是把他們裏面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