- 注册时间
- 2013-3-6
- 最后登录
- 2024-4-30
- 阅读权限
- 10
- 积分
- 663
- 精华
- 0
- 帖子
- 150
|
我的Grid是动态生成的,在Grid的oncellbeginedit事件中为combobox字段设定下拉显示内容,代码如下:
$.ajax({
url: "shipment/GetContainerComboboxAll.action",
type: "post",
success: function (text) {
var o = mini.decode(text);
editor.setData(o);
}
});
请问如何动态设定grid中combobox字段属性showNullItem="true" ,nullItemText="ADD NEW"和事件ondrawcell="onDrawCell"
|
|