partkeepr

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

CategoryEditorForm.js (580B)


      1 Ext.define('PartKeepr.CategoryEditorForm', {
      2     extend: 'Ext.form.Panel',
      3     layout: 'anchor',
      4     border: false,
      5     frame: false,
      6     ui: 'default-framed',
      7     xtype: "CategoryEditorForm",
      8     items: [
      9         {
     10             xtype: 'textfield',
     11             name: 'name',
     12             anchor: '100%',
     13             enableKeyEvents: true,
     14             fieldLabel: i18n("Name")
     15         }, {
     16             xtype: 'htmleditor',
     17             name: 'description',
     18             anchor: '100%',
     19             enableKeyEvents: true,
     20             fieldLabel: i18n("Description")
     21         }
     22     ]
     23 });