Save.js 257 B

1234567891011121314
  1. Ext.define('erp.view.oa.doc.Save',{
  2. extend: 'Ext.Button',
  3. alias: 'widget.erpSaveButton',
  4. id: 'save',
  5. cls:'x-btn-save',
  6. formBind: true,
  7. style: {
  8. marginLeft: '10px'
  9. },
  10. text:null,
  11. initComponent : function(){
  12. this.callParent(arguments);
  13. }
  14. });