GetProperty.js 592 B

1234567891011121314151617181920212223
  1. /**
  2. * 保存按钮
  3. * 适用于单据新增页面的保存,
  4. * 使用时,只需传递一个提交后台的saveUrl即可
  5. * @author yingp
  6. * @date 2012-08-03 10:45:49
  7. */
  8. Ext.define('erp.view.core.button.GetProperty',{
  9. extend: 'Ext.Button',
  10. alias: 'widget.erpGetPropertyButton',
  11. iconCls: 'x-button-icon-delete',
  12. cls: 'x-btn-gray-1',
  13. id: 'GetProperty',
  14. tooltip: '',
  15. id: 'erpGetPropertyButton',
  16. text: $I18N.common.button.erpGetPropertyButton,
  17. initComponent : function(){
  18. this.callParent(arguments);
  19. },
  20. width: 120,
  21. handler: function(){
  22. }
  23. });