Refresh.js 375 B

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