UNPKG

extjs-gpl

Version:

GPL licensed version of Sencha Ext JS

42 lines (39 loc) 1 kB
Ext.define('KitchenSink.view.forms.PlaceholderLabel', { extend: 'Ext.form.Panel', xtype: 'placeholderlabel', requires: [ 'Ext.form.FieldSet', 'Ext.field.Text', 'Ext.field.TextArea' ], shadow: true, cls: 'demo-solid-background', items: { xtype: 'fieldset', defaults: { labelAlign: 'top' }, items: [ { xtype: 'textfield', label: 'Title', labelAlign: 'placeholder' }, { xtype: 'textfield', label: 'Price', labelAlign: 'placeholder' }, { xtype: 'textfield', label: 'Specific Location (optional)', labelAlign: 'placeholder' }, { xtype: 'textareafield', label: 'Description', labelAlign: 'placeholder' } ] } });