首页 > 代码库 > datagrid加分组后的效果
datagrid加分组后的效果
html
<table id="dg"></table>
js
$(‘#dg‘).propertygrid({ title: ‘‘, showGroup: "false", groupField: "monitoring_point_type", url: ‘/GIS/Map.aspx?GetMonitoringPoints=1‘, columns: [[ { field: ‘monitoring_point_name‘, title: ‘名称‘, width: 100 }, { field: ‘value‘, title: ‘名称‘, width: 100,hidden:true } ]], onl oadSuccess: function (data) { loadMnUpToDateImg("" + data.rows[0].monitoring_point_mn + ""); points = data.rows; addMarker(points); }, groupFormatter: function (val) { return mnType[val]; }, onClickRow: function (rowIndex, rowData) { var gpsPoint = new BMap.Point(rowData.monitoring_point_longitude, rowData.monitoring_point_latitude); map.centerAndZoom(gpsPoint, 18); loadMnUpToDateImg("" + rowData.monitoring_point_mn + ""); } });
datagrid加分组后的效果
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。