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.

additems.setting.js 1.7KB

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