easyui datagrid 数据显示不完全,一个个格里面数据多,显示不全
发布网友
发布时间:2022-05-03 05:08
我来回答
共2个回答
热心网友
时间:2022-04-26 13:30
.easyui-datagrid .datagrid-thead{
padding:6px 4px;
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
给列上加
formatter: function(value,row,index){
return '<span title='+value+'>'+value+'</span>'
}
这样 当鼠标移上时就会显示多出来的数据
热心网友
时间:2022-04-26 14:48
var width = $(window).width()-80;
var height = $(window).height()-120;
stView_layout = $('#stView_layout').layout({
width: width,
height: height
});
station_view = $('#stationView').window({
title: '测站导航',
left:50,
top:80,
width: width,
modal: false,
shadow: false,
closed: true,
height: height,
onResize:function(w,h){
if(stView_treegrid){
stView_treegrid.treegrid({
width:w-20,
height:h-260
});
}
}
});