Ext JS - Learning Center

Tutorial talk:Writing Ext 2 Plugins

From Learn About the Ext JavaScript Library

Revision as of 12:40, 5 August 2008 by Enmi (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
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);