我試圖製作一個下拉式滾動條。但事情並沒有解決。選擇框中的Scollbar沒有出現
因此,這裏的樣機:
<div class="form-group">
<div id="fixedHeightDropDownContainer">
<label class="control-label">@Resources.IntrusionGroup</label>
<select name="intGroup1" id="intGroup1" class="form-control" tabindex="10" data-bind="options: $root.intGroups, optionsText: 'Name', optionsValue: 'Id',optionsCaption: '--Select--',value:$data.IntGroupName"></select>
</div>
<a href="#" class="ispicon ispicon_plus" data-toggle="modal" data-target="#addSchedule" data-bind="click:$parent.addGroup" title="Create New">Create New</a>
</div>
現在我試着在CSS:
div#fixedHeightDropDownContainer {
height: 100px !important;
width:auto !important;
overflow-y:auto !important;
background-color:red;
}
但沒有奏效。我將樣式應用於div,但保留了下拉選項。
然後我嘗試:
#intrusionGroup1{
height: 100px !important;
width:auto !important;
overflow-y:auto !important;
background-color:red;
}
但也搞砸了UI。現在選擇選項本身具有高度,而不是選項菜單。
怎樣纔可以解決嗎?
謝謝。
不可能擴大下拉。你必須做一些multiselect插件或爲它編寫jQuery代碼。 –
看看這篇文章http://stackoverflow.com/questions/24119643/html-select-tag-show-verticle-scroll-with-10-option –