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.

item.settings.js 1.2KB

123456789101112131415161718192021222324252627282930313233343536
  1. var Unibase;
  2. (function (Unibase) {
  3. let Forms;
  4. (function (Forms) {
  5. let Controls;
  6. (function (Controls) {
  7. class ItemDetails_Setting {
  8. loadSettingHtml() {
  9. return ``;
  10. }
  11. bindControlData(controldatajson) {
  12. return "";
  13. }
  14. SaveControlData(controldatajson) {
  15. return "";
  16. }
  17. loadControlPropertiesHtml(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 ItemDetails_Setting();
  29. }
  30. return this.instance;
  31. }
  32. }
  33. Controls.ItemDetails_Setting = ItemDetails_Setting;
  34. })(Controls = Forms.Controls || (Forms.Controls = {}));
  35. })(Forms = Unibase.Forms || (Unibase.Forms = {}));
  36. })(Unibase || (Unibase = {}));