在jqgrid (v4.4.5)中,我扩展了默认行为,如下所示:
$.extend($.jgrid.view, {
width:300,
beforeShowForm: function(form) {
//hide the edit icon inside id value
setTimeout(function () {
$('#v_id').find('span:first').css('display','none');
}, 100);
}
});
var orgViewModal = $.jgrid.viewModal;
$.extend($.jgrid,{
viewModal: function (selector, o){
console.log(selector, o);
$(selector).center();
orgViewModal.call(this, selector, o);
}
});
我最近在一个项目中使用了free (v4.12.1-pre),而且大多数事情都如预期的那样工作。
有一件事我做不到,那就是扩展ViewModal。
$.jgrid.view可以工作,但viewModal不能工作。
https://stackoverflow.com/questions/34977243
复制相似问题