Delete.js 250 B

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