Ext JS - Learning Center

Tutorial talk:Writing Ext 2 Plugins

From Learn About the Ext JavaScript Library

Jump to: navigation, search

For combobox with value field

change :


               var rec = this.store.query(this.valueField, this.getValue()).itemAt(0);

to :


               var rgxp = new RegExp("^" + this.getValue() + '$', "g");
               var rec = this.store.query(this.valueField, rgxp).itemAt(0);
  • This page was last modified on 5 August 2008, at 12:40.
  • This page has been accessed 1,353 times.