Calendar.js 673 B

12345678910111213141516171819202122
  1. MWF.xApplication.portal.PageDesigner.Module.Calendar = MWF.PCCalendar = new Class({
  2. Extends: MWF.FCCalendar,
  3. Implements: [Options, Events],
  4. options: {
  5. "style": "default",
  6. "propertyPath": "../x_component_portal_PageDesigner/Module/Calendar/calendar.html"
  7. },
  8. initialize: function(form, options){
  9. this.setOptions(options);
  10. this.path = "../x_component_portal_PageDesigner/Module/Calendar/";
  11. this.cssPath = "../x_component_portal_PageDesigner/Module/Calendar/"+this.options.style+"/css.wcss";
  12. this._loadCss();
  13. this.moduleType = "element";
  14. this.moduleName = "calendar";
  15. this.form = form;
  16. this.container = null;
  17. this.containerNode = null;
  18. }
  19. });