Sha256: 5fa6741403b2dba56ce37ea03938d44e44619fd6b5c4850dcabeafaa3f81b85a
Contents?: true
Size: 1.39 KB
Versions: 1
Compression:
Stored size: 1.39 KB
Contents
/** * <%= class_name %>Detail controller */ Ext.define('<%= @bundle %>.controller.<%= singular_name %>.<%= class_name %>Item', { extend : 'Frx.controller.ItemController', requires : [ '<%= @bundle %>.model.<%= class_name %>', '<%= @bundle %>.store.<%= class_name %>', '<%= @bundle %>.view.<%= singular_name %>.<%= class_name %>Item' ], mixins : [ 'Frx.mixin.lifecycle.FormLifeCycle' ], models : ['<%= @bundle %>.model.<%= class_name %>'], stores : ['<%= @bundle %>.store.<%= class_name %>'], views : ['<%= @bundle %>.view.<%= singular_name %>.<%= class_name %>Item'], init : function() { this.callParent(arguments); this.control({ '<%= @bundle.downcase %>_<%= singular_name %>_item' : this.EntryPoint(), '<%= @bundle.downcase %>_<%= singular_name %>_form' : this.FormEventHandler() }); }, /**************************************************************** ** 여기는 customizing area ** ****************************************************************/ // Customized code here ... /**************************************************************** ** Override 구현 ** ****************************************************************/ /**************************************************************** ** abstract method, 필수 구현 ** ****************************************************************/ });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hatio-core-0.0.6 | lib/generators/hatio/resource_view/templates/item/ViewController.js |