Built files from Bizgaze WebServer
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

offercontact.settings.js 1.2KB

1234567891011121314151617181920212223242526272829303132333435
  1. var Bizgaze;
  2. (function (Bizgaze) {
  3. let Forms;
  4. (function (Forms) {
  5. let Controls;
  6. (function (Controls) {
  7. class OfferContact_Settings {
  8. loadSettingHtml(container) {
  9. return null;
  10. }
  11. bindControlData(controldatajson) {
  12. return null;
  13. }
  14. SaveControlData(controldatajson) {
  15. return controldatajson;
  16. }
  17. loadControlPropertiesHtml(controlpropList, container) {
  18. return "";
  19. }
  20. bindPropertySettings(prop) {
  21. return "";
  22. }
  23. savePropertySettings(prop) {
  24. return "";
  25. }
  26. static Instance() {
  27. if (this._instance === undefined)
  28. this._instance = new OfferContact_Settings();
  29. return this._instance;
  30. }
  31. }
  32. Controls.OfferContact_Settings = OfferContact_Settings;
  33. })(Controls = Forms.Controls || (Forms.Controls = {}));
  34. })(Forms = Bizgaze.Forms || (Bizgaze.Forms = {}));
  35. })(Bizgaze || (Bizgaze = {}));