2015-11-26 66 views
0

我目前有一個選擇下拉菜單,它擴展到模態窗口之外。增加窗口高度並在其內部保留下拉菜單是否更好? (在這種情況下怎麼做?) 或更好的繼續使用這種當前的設計?引導模式選擇下拉菜單擴展窗口

dropdown over modal window

回答

1

在你的CoffeeScript你可以抓住你的下拉菜單中單擊事件,並重置您的模態窗口的高度:

toggleModalHeight = -> 
    $('#your_drop_down').on 'click', (event) -> 
     $('#modal_id').css('height','new height here') 


$(document).ready toggleModalHeight 
#For avoid Turbolinks issues 
$(document).on 'page:load', toggleModalHeight 

toggleModalHeight功能,你甚至可以計算的新高度你的模態並正確設置。希望已經幫助你。

+0

謝謝..它有幫助... 在純粹的設計觀點,這是最佳實踐,流動懸停或擴大窗口? – erwin

+0

我會擴大窗口。使用jQuery它會順利擴展 – SsouLlesS