我在 extjs3 中有一个文本字段,如果我在其中输入 12 位,它应该会自动触发。
我们是通过条码扫描仪扫描的,所以如果数字达到 12 位,它应该会自动触发。
listeners: {
'change': function(field, newValue, oldValue){
if( newValue.length ==12 || newValue.length ==13){
alert("searchByUpcFunction()");
}
}
}
在 extjs 4 中,同样的事情正在工作,但在 extjs 3 中没有。我在 extjs 3 中需要同样的东西。