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.

imagepicker.settings.js 1.3KB

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