Personfield.js 699 B

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