PurchaseNotifyCancelAll.js 417 B

12345678910111213141516
  1. Ext.define('erp.view.core.button.PurchaseNotifyCancelAll',{
  2. extend: 'Ext.Button',
  3. alias: 'widget.erpPurchaseNotifyCancelAllButton',
  4. iconCls: 'x-button-icon-delete',
  5. cls: 'x-btn-gray',
  6. text: '取消所有',
  7. id: 'cancel',
  8. style: {
  9. marginLeft: '10px'
  10. },
  11. hidden: true,
  12. width: 80,
  13. initComponent : function(){
  14. this.callParent(arguments);
  15. }
  16. });