Built files from Bizgaze WebServer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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 = {}));