Table$Td.js 641 B

123456789101112131415161718192021
  1. MWF.xApplication.portal.PageDesigner.Module.Table$Td = MWF.PCTable$Td = new Class({
  2. Extends: MWF.FCTable$Td,
  3. Implements: [Options, Events],
  4. options: {
  5. "style": "default",
  6. "propertyPath": "../x_component_portal_PageDesigner/Module/Table$Td/table$td.html"
  7. },
  8. initialize: function(form, options){
  9. this.setOptions(options);
  10. this.path = "../x_component_portal_PageDesigner/Module/Table$Td/";
  11. this.cssPath = "../x_component_portal_PageDesigner/Module/Table$Td/"+this.options.style+"/css.wcss";
  12. this._loadCss();
  13. this.moduleType = "container";
  14. this.moduleName = "table$Td";
  15. this.Node = null;
  16. this.form = form;
  17. }
  18. });