使用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需要兩行顯示,現在只顯示在一行了如果寬度不夠會出現滑動塊
