Sha256: 10c65f8788a1d23614d8463f5c407b6e7b2ca37b51be26f9ea0affa262aa2e05
Contents?: true
Size: 456 Bytes
Versions: 3
Compression:
Stored size: 456 Bytes
Contents
Ext.define('<%= app_name %>.view.<%= singular_table_name %>.EditForm', { extend: '<%= app_name %>.ux.form.Panel', alias: 'widget.<%= singular_table_name %>form', initComponent: function() { this.items = this.buildItems(); this.callParent(arguments); }, buildItems: function() { return [ <% attributes.each_with_index do |attribute, index| %> <%= index > 0 ? ',' : '' %> <%= create_ext_formfield(attribute) -%> <% end %> ]; } });
Version data entries
3 entries across 3 versions & 1 rubygems