- 注册时间
- 2017-5-28
- 最后登录
- 1970-1-1
- 阅读权限
- 10
- 积分
- 62
- 精华
- 0
- 帖子
- 13
|
我想合并单元格,但是动态加载dataGrid数据没有load事件?程序一直不会执行load事件函数。function loadDpGridB(){
var url = "${basePath}/ado.do";
$.ajax({
url:url,
type:'POST',
data:'',
cache:false,
contentType:'application/json',
success:function(text){
dpGridB.setData(text);
}
});
}dpGridB.on("load", function (e) {
var grid = e.sender;
var marges = [
{ rowIndex: 1, columnIndex: 0, rowSpan: 1, colSpan: 2 }
];
grid.mergeCells(marges);
});
|
|