Freeze.js 346 B

1234567891011121314151617
  1. /**
  2. * 冻结按钮
  3. */
  4. Ext.define('erp.view.core.button.Freeze', {
  5. extend : 'Ext.Button',
  6. alias : 'widget.erpFreezeButton',
  7. iconCls : 'x-button-icon-check',
  8. cls : 'x-btn-gray',
  9. id : 'Freeze',
  10. text : $I18N.common.button.erpFreezeButton,
  11. style : {
  12. marginLeft : '10px'
  13. },
  14. initComponent : function() {
  15. this.callParent(arguments);
  16. }
  17. });