• artdialog自定义多个按钮


    在实际运用到的过程中artdialog弹出框下面的按钮不止一个

     可以自己定义多个按钮

    function view_show(cust_id){
    $.dialog({
            id: 'view_cust',
             '737px',
            title: '客户信息查看',
            lock: true,
            button:[
                    {name:'上一条',
                        callback:function(){
                            cust_id = c.getPrevCustomer(cust_id);
                            if(!cust_id){
                                return false;
                            }
                            this.content('<iframe id="customer_view" src="http://'+crm_host+'/?controller=view&action=custinfo&arg='+arg+'&cust_id='+cust_id+'" frameborder="0" width="735" height="426"></iframe>');
                            return false;
                            }
                    },
                    {name:"下一条",
                         callback:function(){
                            cust_id =  c.getNextCustomer(cust_id);
                            if(!cust_id){
                                return false;
                            }
                            this.content('<iframe id="customer_view" src="http://'+crm_host+'/?controller=view&action=custinfo&arg='+arg+'&cust_id='+cust_id+'" frameborder="0" width="735" height="426"></iframe>');
                            return false;
                        }
                    }],
            content: '<iframe id="customer_view" src="http://'+crm_host+'/?controller=view&action=custinfo&arg='+arg+'&cust_id='+cust_id+'" frameborder="0" width="735" height="426"></iframe>'    
        });
    }

    具体的格式:

            button:[ {

         name:'名字',
                        callback:function(){}

              },

             {name:'名字',
                        callback:function(){}         

             } ]

  • 相关阅读:
    PA
    核电站问题(codevs 2618)
    [转]SQL SERVER 的排序规则
    C# 窗体控件输入框大写
    查看哪些端口被使用
    [转]Windows服务“允许服务与桌面交互”的使用和修改方法
    [转]OBJECT_ID 有哪些种类
    如何:对 Windows 窗体控件进行线程安全调用
    老人手机不要买山寨机
    VBA文本型数字变成数值
  • 原文地址:https://www.cnblogs.com/jsingleegg/p/3489186.html
Copyright © 2020-2023  润新知