Extjs组合框自动完成功能不起作用

时间:2011-04-12 10:32:12

标签: extjs combobox grid

我有一个编辑网格,组合框就是它的一个领域。 组合框使用json商店。 这是组合框代码:

var patternCmb = new Ext.form.ComboBox({ //combobox for workers
    store:  dsPatterns,
    valueField: 'pid',
    displayField: 'pname',
    typeAhead:true, 
    lazyRender:true,
    forceSelection:true,
    minChars: 2, 
    valueNotFoundText:"not found",
    editable: true,
    triggerAction: 'all' 
});

输入第三个字符后,选择商店的FIRST(不正确)值。可能是什么问题?

1 个答案:

答案 0 :(得分:4)

尝试以下方法:

  1. 在组合框中设置mode: 'local'
  2. 确保您的dsPatterns(商店)中有autoLoad: true