partkeepr

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

FootprintComboBox.js (253B)


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