问个很白的问题。。别笑话我。。。
打算页面打开后,就直接显示数据,
但是现在必须点一下分页栏上的刷新才显示。倒也显示页数和记录数,请教这是怎么回事啊?
<script type="text/javascript">
$(function () {
var request = new Object();
Request = GetRequest();
var db = Request['DB'];
var shp_id = Request['shp_id'];
$('#dg').datagrid({
border: true,
url: "dm_sku.ashx?db=" + db + "&shp_id=" + shp_id ,
columns: [[
{ title: '店铺编号', field: 'shp_id', width: 80 },
{ title: '款式编号', field: 'fas_id', width: 80 },
{ title: '色号', field: 'col_id', width: 40 },
{ title: '颜色', field: 'col_name', width: 100 },
{ title: '库存码数', field: 'dd', width: 80 },
{ title: '年度', field: 'fas_year', width: 50 },
{ title: '季节', field: 'fas_season', width: 50 }
]],
fitColumns: true,
singleSelect: true,
pagination: true,
loadMsg: '数据加载中,请稍后...',
striped: true,
pageSize: 20
});
var p = $('#dg').datagrid('getPager');
$(p).pagination({
beforePageText: '第',
afterPageText: '页 共 {pages} 页',
displayMsg: '当前显示 {from} - {to} 条记录 共 {total} 条记录'
});
});
</script>