MRPAutoLoad.js 339 B

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