jqgrid中的自定义编辑按钮

发布于 2024-12-08 23:48:17 字数 1892 浏览 0 评论 0原文

我已在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文