Tab$Content.js 876 B

123456789101112131415161718192021222324252627282930
  1. MWF.xApplication.portal.PageDesigner.Module.Tab$Content = MWF.PCTab$Content = new Class({
  2. Extends: MWF.FCTab$Content,
  3. Implements: [Options, Events],
  4. options: {
  5. "style": "default",
  6. "propertyPath": "../x_component_portal_PageDesigner/Module/Tab$Content/tab$Content.html",
  7. "actions": [{
  8. "name": "selectParent",
  9. "icon": "selectParent.png",
  10. "event": "click",
  11. "action": "selectParent",
  12. "title": MWF.APPFD.LP.formAction["selectParent"]
  13. }]
  14. },
  15. initialize: function(tab, page, options){
  16. this.setOptions(options);
  17. this.path = "../x_component_portal_PageDesigner/Module/Tab$Content/";
  18. this.cssPath = "../x_component_portal_PageDesigner/Module/Tab$Content/"+this.options.style+"/css.wcss";
  19. this._loadCss();
  20. this.moduleType = "container";
  21. this.moduleName = "tab$Content";
  22. this.form = tab.form;
  23. this.tab = tab;
  24. this.page = page;
  25. }
  26. });