Back.js 345 B

1234567891011121314
  1. Ext.define('erp.view.core.button.Back',{
  2. extend: 'Ext.Button',
  3. alias: 'widget.erpBackButton',
  4. iconCls: 'x-button-icon-delete',
  5. cls: 'x-btn-gray',
  6. text: $I18N.common.button.erpBackButton,
  7. style: {
  8. marginLeft: '10px'
  9. },
  10. width: 60,
  11. initComponent : function(){
  12. this.callParent(arguments);
  13. }
  14. });