partkeepr

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

UnitComboBox.js (314B)


      1 Ext.define("PartKeepr.UnitComboBox",{
      2     extend:"PartKeepr.ReloadableComboBox",
      3     alias: 'widget.UnitComboBox',
      4     forceSelection: true,
      5     allowBlank: true,
      6     emptyText: i18n("Unit"),
      7     initComponent: function () {
      8 		this.store = PartKeepr.getApplication().getUnitStore();
      9 		this.callParent();
     10     }
     11 });