jqgrid中的自定义编辑按钮
我已在 jqgrid 中添加添加自定义按钮,但无法传递自定义按钮进行编辑添加自定义按钮进行添加请帮助我添加自定义编辑按钮。
.jqGrid('navButtonAdd','#list_translation_toppager_left',{
caption:"",
buttonicon:"ui-icon-plus",
onClickButton:function(){
console.log($(st_trans).html());
if($(st_trans).html() != null ) {
maintab_trans.tabs('select',st_trans);
$(st_trans).empty();
//cosole.log("no");
}
maintab_trans.tabs('remove',st_trans);
maintab_trans.tabs('add',st_trans, treedata_trans.menu);
$.ajax({
url: "php/xxx.html",
type: "GET",
dataType: "html",
complete : function (req, err) {
$(st_trans,"#tabs").append(req.responseText);
//console.log(st_trans);
//console.log(treedata_trans);
jQuery(".ui-widget-content").css({'height':'70%'});
jQuery("#gbox_west-grid").css({'height':''});
jQuery(".ui-jqgrid-view").css({'height':'90%'});
jQuery(".ui-jqgrid-bdiv").css({'height':'85%'});
try { var pageTracker = _gat._getTracker("UA-5463047-4"); pageTracker._trackPageview(); } catch(err) {};
}
});
},
position: "first",
title:"",
cursor: "pointer"
} );
I have added add custom button in jqgrid but not able to pass custom button for edit adding custom button for add please help me adding custom edit button.
.jqGrid('navButtonAdd','#list_translation_toppager_left',{
caption:"",
buttonicon:"ui-icon-plus",
onClickButton:function(){
console.log($(st_trans).html());
if($(st_trans).html() != null ) {
maintab_trans.tabs('select',st_trans);
$(st_trans).empty();
//cosole.log("no");
}
maintab_trans.tabs('remove',st_trans);
maintab_trans.tabs('add',st_trans, treedata_trans.menu);
$.ajax({
url: "php/xxx.html",
type: "GET",
dataType: "html",
complete : function (req, err) {
$(st_trans,"#tabs").append(req.responseText);
//console.log(st_trans);
//console.log(treedata_trans);
jQuery(".ui-widget-content").css({'height':'70%'});
jQuery("#gbox_west-grid").css({'height':''});
jQuery(".ui-jqgrid-view").css({'height':'90%'});
jQuery(".ui-jqgrid-bdiv").css({'height':'85%'});
try { var pageTracker = _gat._getTracker("UA-5463047-4"); pageTracker._trackPageview(); } catch(err) {};
}
});
},
position: "first",
title:"",
cursor: "pointer"
} );
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论