- 注册时间
 - 2016-7-28
 - 最后登录
 - 1970-1-1
 - 阅读权限
 - 10
 - 积分
 - 314
 - 精华
 - 0
 - 帖子
 - 77
  
 
 
 
   
 | 
   
grid.set({ 
        columns: [ 
            { type: "indexcolumn" }, 
            { field: "loginname", width: 120, headerAlign: "center", allowSort: true, header: "员工账号", editor: { type: "textbox", minValue: 0, maxValue: 200, value: 25} }, 
            { field: "age", width: 100, headerAlign: "center", allowSort: true, header: "年龄", editor: { type: "spinner"} }, 
            { field: "birthday", width: 100, headerAlign: "center", dateFormat: "yyyy-MM-dd H:mm", allowSort: true, header: "生日", editor: { type: "datepicker"} }, 
            { field: "remarks", width: 120, headerAlign: "center", allowSort: true, header: "备注", editor: { type: "textarea"} }, 
            { field: "gender", type: "comboboxcolumn", autoShowPopup: true, width: 100, headerAlign: "center", header: "性别", editor: { type: "combobox", data: Genders} }, 
            { field: "country", type: "comboboxcolumn", width: 100, headerAlign: "center", header: "国家", editor: { type: "combobox", url: "../data/countrys.txt"} }, 
            { field: "married", trueValue: 1, falseValue: 0, type: "checkboxcolumn", width: 60, headerAlign: "center", header: "婚否" } 
        ] 
    }); 
 
http://www.miniui.com/docs/api/index.html#ui=listbox 
 
请教各位,这样构造出来的datagrid怎么给combobox列添加事件?比如我要在选择性别为男后alert(1),该怎么实现呢? 
 
 |   
 
  
 |