OverAccount.js 373 B

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