partkeepr

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

commit 8fe2e65259c5fbbe7d772ecd9d2690a18c63ca4a
parent cd2514d07db4820b46754bc0d3ecb43107fed302
Author: Felicitus <felicitus@felicitus.org>
Date:   Sun, 10 Jul 2011 08:37:18 +0200

Made most comboboxes editable (=type ahead works), still forced to select an entry.

Diffstat:
Mfrontend/js/Components/Widgets/DistributorComboBox.js | 2+-
Mfrontend/js/Components/Widgets/FootprintComboBox.js | 2+-
Mfrontend/js/Components/Widgets/ManufacturerComboBox.js | 2+-
Mfrontend/js/Components/Widgets/PartUnitComboBox.js | 2+-
Mfrontend/js/Components/Widgets/UserComboBox.js | 2+-
5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/frontend/js/Components/Widgets/DistributorComboBox.js b/frontend/js/Components/Widgets/DistributorComboBox.js @@ -7,7 +7,7 @@ Ext.define("PartKeepr.DistributorComboBox",{ queryMode: 'local', triggerAction: 'all', forceSelection: true, - editable: false, + editable: true, initComponent: function () { this.store = PartKeepr.getApplication().getDistributorStore(); diff --git a/frontend/js/Components/Widgets/FootprintComboBox.js b/frontend/js/Components/Widgets/FootprintComboBox.js @@ -7,7 +7,7 @@ Ext.define("PartKeepr.FootprintComboBox",{ queryMode: 'local', triggerAction: 'all', forceSelection: true, - editable: false, + editable: true, initComponent: function () { this.store = PartKeepr.getApplication().getFootprintStore(); diff --git a/frontend/js/Components/Widgets/ManufacturerComboBox.js b/frontend/js/Components/Widgets/ManufacturerComboBox.js @@ -7,7 +7,7 @@ Ext.define("PartKeepr.ManufacturerComboBox",{ queryMode: 'local', triggerAction: 'all', forceSelection: true, - editable: false, + editable: true, initComponent: function () { this.store = PartKeepr.getApplication().getManufacturerStore(); diff --git a/frontend/js/Components/Widgets/PartUnitComboBox.js b/frontend/js/Components/Widgets/PartUnitComboBox.js @@ -7,7 +7,7 @@ Ext.define("PartKeepr.PartUnitComboBox",{ queryMode: 'local', triggerAction: 'all', forceSelection: true, - editable: false, + editable: true, initComponent: function () { this.store = PartKeepr.getApplication().getPartUnitStore(); diff --git a/frontend/js/Components/Widgets/UserComboBox.js b/frontend/js/Components/Widgets/UserComboBox.js @@ -7,7 +7,7 @@ Ext.define("PartKeepr.UserComboBox",{ queryMode: 'local', triggerAction: 'all', forceSelection: true, - editable: false, + editable: true, initComponent: function () { this.store = PartKeepr.getApplication().getUserStore();