Built files from Bizgaze WebServer
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

template.setting.js 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. var Unibase;
  2. (function (Unibase) {
  3. let Platform;
  4. (function (Platform) {
  5. let Communications;
  6. (function (Communications) {
  7. let Controls;
  8. (function (Controls) {
  9. class Template_Setting {
  10. loadSettingHtml() {
  11. return ``;
  12. }
  13. bindControlData(controldatajson) {
  14. return "";
  15. }
  16. SaveControlData(controldatajson) {
  17. return "";
  18. }
  19. loadControlPropertiesHtml(Container) {
  20. return ``;
  21. }
  22. bindPropertySettings(prop) {
  23. var propertySettings = prop.PropertySettings;
  24. return "";
  25. }
  26. savePropertySettings(prop) {
  27. var propertySettings = prop.PropertySettings;
  28. return "";
  29. }
  30. static Instance() {
  31. if (this.instance === undefined) {
  32. this.instance = new Template_Setting();
  33. }
  34. return this.instance;
  35. }
  36. }
  37. Controls.Template_Setting = Template_Setting;
  38. })(Controls = Communications.Controls || (Communications.Controls = {}));
  39. })(Communications = Platform.Communications || (Platform.Communications = {}));
  40. })(Platform = Unibase.Platform || (Unibase.Platform = {}));
  41. })(Unibase || (Unibase = {}));