1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| $('#HouseData').datagrid({ url: '/Ashx/TempHouse.ashx?type=extractinghouseinfo&ownerinfo=' + ownerInfo, method: 'get', idField: 'house_id', loadMsg: "数据加载中......", fitColumns: true, singleSelect: true, pagination: true, pageSize: 15, pageList: [5, 10, 15], beforePageText: '第', afterPageText: '页 共 {pages} 页', displayMsg: '当前显示 {from} - {to} 条记录 共 {total} 条记录', rownumbers: true, striped: true, columns: [[ { field: 'ck', checkbox: true }, { field: 'house_id', title: '房屋ID', width: 180, hidden: 'true' }, { field: 'income_id', title: '业务号', width: 180 }, { field: 'right_id', title: '房产证号', width: 180 }, { field: 'owner_name', title: '产权人', width: 180 }, { field: 'card_id', title: '身份证号', width: 180 }, { field: 'seat_name', title: '房屋坐落', width: 180 }, { field: 'build_name', title: "幢名", width: 180 }, { field: 'house_name', title: "房名", width: 180 }, { field: 'current_floor', title: "所在层", width: 180 }, { field: 'build_area', title: "建筑面积", width: 180 }, { field: 'from_name', title: "产权来源", width: 180 } ]], enableFilter: true });
|