Canceltask.js 359 B

123456789101112131415
  1. Ext.define('erp.view.core.button.Canceltask',{
  2. extend: 'Ext.Button',
  3. alias: 'widget.erpCanceltaskButton',
  4. text: "取消处理",
  5. iconCls: 'x-button-icon-close',
  6. id:'erpCanceltaskButton',
  7. cls: 'x-btn-gray',
  8. width: 60,
  9. style: {
  10. marginLeft: '10px'
  11. },
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. }
  15. });