Guest User

Untitled

a guest
Jun 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. {
  2. editor: {
  3. xtype: "adaptivetagfield",
  4. store: 'teamEmployees',
  5. valueField: "ouid",
  6. displayField: "name",
  7. listeners: {
  8. blur: function() {
  9. this.store.reload();
  10. },
  11. expand: function() {
  12. this.listFilter = new Ext.util.Filter({
  13. scope: this,
  14. filterFn: this.filterPicked
  15. });
  16. this.store.filter(this.listFilter);
  17. }
  18. }
  19. },
  20. }
Add Comment
Please, Sign In to add comment