ExportForm.js 839 B

12345678910111213141516171819202122232425262728293031323334353637
  1. Ext.define('erp.view.ma.data.ExportForm',{
  2. extend: 'Ext.form.Panel',
  3. alias: 'widget.erpExportFormPanel',
  4. id: 'form',
  5. region: 'north',
  6. frame : true,
  7. layout : 'column',
  8. autoScroll : true,
  9. defaultType : 'textfield',
  10. labelSeparator : ':',
  11. buttonAlign : 'center',
  12. fieldDefaults : {
  13. margin : '2 2 2 2',
  14. fieldStyle : "background:#FFFAFA;color:#515151;",
  15. focusCls: 'x-form-field-cir',//fieldCls
  16. labelAlign : "right",
  17. msgTarget: 'side',
  18. blankText : $I18N.common.form.blankText
  19. },
  20. FormUtil: Ext.create('erp.util.FormUtil'),
  21. keyField: '',
  22. codeField: '',
  23. statusField: '',
  24. params: null,
  25. caller: null,
  26. Contextvalue:null,
  27. LastValue:null,
  28. enableTools: true,
  29. enableKeyEvents: true,
  30. initComponent : function(){
  31. this.items=[{
  32. }]
  33. this.callParent(arguments);
  34. }
  35. });