partkeepr

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

ManufacturerGrid.js (440B)


      1 Ext.define('PartKeepr.ManufacturerGrid', {
      2     extend: 'PartKeepr.EditorGrid',
      3     alias: 'widget.ManufacturerGrid',
      4     columns: [
      5         {header: i18n("Manufacturer"), dataIndex: 'name', flex: 1}
      6     ],
      7     addButtonText: i18n("Add Manufacturer"),
      8     addButtonIconCls: 'fugue-icon building--plus',
      9     deleteButtonText: i18n("Delete Manufacturer"),
     10     deleteButtonIconCls: 'fugue-icon building--minus',
     11     automaticPageSize: true
     12 });