使用easyui 1.4.4
1
2
3
4
5
6
7
8
|
<select id=
"hotalid"
class
=
"easyui-combobox"
data-options="
url:
'<%=basePath %>xxx.action'
,
method:
'get'
,
valueField:
'hotelId'
,
textField:
'hotelName'
,
panelHeight:
300
" name="
HotelID
" style="
width:100px;">
<option></option>
</select>
|
1
2
3
4
5
6
7
|
$(function(){
$(
".combo"
).mouseenter(function(){
$(
this
).prev().combobox(
"showPanel"
);
$(
".combobox-item"
).css({
"white-space"
:
"nowrap"
});
});
});
|
设置后就可以显示在一行了
未设置前 比如 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA需要两行显示,现在只显示在一行了如果宽度不够会出现滑动块