Table.js 838 B

123456789101112131415161718192021
  1. MWF.xApplication.cms.FormDesigner.Module = MWF.xApplication.cms.FormDesigner.Module || {};
  2. MWF.xDesktop.requireApp("process.FormDesigner", "Module.Table", null, false);
  3. MWF.xDesktop.requireApp("cms.FormDesigner", "Property", null, false);
  4. MWF.xApplication.cms.FormDesigner.Module.Table = MWF.CMSFCTable = new Class({
  5. Extends: MWF.FCTable,
  6. Implements : [MWF.CMSFCMI],
  7. showMultiProperty: function(){
  8. if (this.form.propertyMultiTd){
  9. this.form.propertyMultiTd.hide();
  10. this.form.propertyMultiTd = null;
  11. }
  12. this.form.propertyMultiTd = new MWF.xApplication.cms.FormDesigner.PropertyMulti(this.form, this.form.selectedModules, this.form.designer.propertyContentArea, this.form.designer, {
  13. "path": this.options.propertyMultiPath,
  14. "onPostLoad": function(){
  15. this.show();
  16. }
  17. });
  18. this.form.propertyMultiTd.load();
  19. }
  20. });