Test.js 370 B

12345678910111213141516
  1. Ext.define('erp.view.core.button.Test',{
  2. extend: 'Ext.Button',
  3. alias: 'widget.erpTestButton',
  4. param: [],
  5. text: $I18N.common.button.erpTestButton,
  6. iconCls: 'x-button-icon-help',
  7. id: 'testbutton',
  8. cls: 'x-btn-gray',
  9. width: 60,
  10. style: {
  11. marginLeft: '10px'
  12. },
  13. initComponent : function(){
  14. this.callParent(arguments);
  15. }
  16. });