Number.js 528 B

123456789101112
  1. MWF.xApplication.process.FormDesigner.Module = MWF.xApplication.process.FormDesigner.Module || {};
  2. MWF.xDesktop.requireApp("process.FormDesigner", "Module.Textfield", null, false);
  3. MWF.xApplication.process.FormDesigner.Module.Number = MWF.FCNumber = new Class({
  4. Extends: MWF.FCTextfield,
  5. Implements: [Options, Events],
  6. options: {
  7. "style": "default",
  8. "type": "number",
  9. "path": "../x_component_process_FormDesigner/Module/Number/",
  10. "propertyPath": "../x_component_process_FormDesigner/Module/Number/number.html"
  11. }
  12. });