easyui-datagrid分页部分翻页按钮不显示

css代码:
.ranks_con_table{
height:380px; margin-top:10px; overflow:hidden;
}
html代码:
<div class="easyui-layout ranks_con_table" style="padding: 0px;">
<table id="Value_ReTable" class="easyui-datagrid" >
</table>
</div>
js代码:
$('#Value_ReTable').datagrid({
iconCls : 'icon-edit',//图标
url:"xfdId.action",
queryParams:eqdata,
height : 1500,
width : 1000,
striped : true,
fit : true,
fitColumns : true,
pagination:true,
singleSelect:true,
loadFilter:function(data){
if(eval('(' + data.returnArray + ')').pointList){
var tableList=eval('(' + data.returnArray + ')').List;
return tableList;
}
},
columns : [ [{
field: 'name',
width: 160,
title: '名称'
},
{
field : 'btn',
width : '22',
title : '详情',
formatter: function (value, row, index) {
var rowStr=JSON.stringify(row);
var roww=rowStr.replace(/\"/g, "'");
//alert(rowStr.replace("\"", "'"));
return "<img width='20' height='20' src='../layers/images/i_einfo.png' onclick=\"javascript:openFunction("+roww+");window.event.cancelBubble=true;\"/>";
}
}
]],
onClickRow: function (rowIndex, data) {
}
});

问题:分页部分 翻页按钮不显示,但鼠标悬浮上之后还有。可以点击,执行翻页操作。

页面上显示这种效果。
我想要的效果:

第1个回答  2015-12-07
后台接收到,是怎样的参数 。。。。。。。。。 传回来又, 怎样的数据追问

样式出来了,是因为我之前给他设置了其他的样式导致把原始的easyui样式覆盖了。

相似回答