partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

UserComboBox.js (286B)


      1 Ext.define("PartKeepr.UserComboBox", {
      2     extend: "PartKeepr.ReloadableComboBox",
      3     alias: 'widget.UserComboBox',
      4     displayField: "username",
      5 
      6     initComponent: function ()
      7     {
      8         this.store = PartKeepr.getApplication().getUserStore();
      9         this.callParent();
     10     }
     11 });