EXTJS4中的链接组合框

时间:2012-08-09 08:34:04

标签: javascript extjs combobox extjs4.1

我正在尝试使用EXTjs4创建链接的组合框,我想使用静态数组数据源。我查看了sencha网站上的例子,但我找不到。感谢

1 个答案:

答案 0 :(得分:0)

我过去做过类似的事情。我有两个组合框 - 一个显示employees(valueField:EmployeeID),另一个显示manager(valueField:EmployeeID)。当用户选择一名员工时,另一个组合框会自动显示该员工的经理。这是我用过的:

var EmployeesComboBox = Ext.create('Ext.form.ComboBox', {
    listeners:{
         'select': function(cbo, records) {
              // set the value of the other combo box to the selected employee ID
              Ext.getCmp('id_of_2nd_combo_box').setValue(records[0].data.EmployeeID);
          }
    }
});