RunLackWip.js 390 B

123456789101112131415
  1. Ext.define('erp.view.core.button.RunLackWip',{
  2. extend: 'Ext.Button',
  3. alias: 'widget.erpRunLackWipButton',
  4. iconCls: 'x-button-icon-submit',
  5. cls: 'x-btn-gray',
  6. text: $I18N.common.button.erpRunLackWipButton,
  7. style: {
  8. marginLeft: '5px'
  9. },
  10. width: 130,
  11. // disabled:true,
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. }
  15. });