EasyUi 下拉列表设置滚动条

js中
$('#tag').combobox({   
	    url:  '/DataAction.do?method=geTag',   
	    valueField:'CODEVALUE',
            textField:'CODENAME',
	    panelHeight:'250' ,  //设置panelHeight为固定值时会出现滚动条,也可设置成  panelHeight:'auto' 无滚动条。
 
Jsp中
<input id="tag" name="tag" class="easyui-combobox" panelHeight="250" data-options="editable: false" style="width: 257px;" />

转自:https://blog.csdn.net/xinjiatao/article/details/84713406

猜你喜欢

转载自blog.csdn.net/cillent_boy/article/details/90717716