Built files from Bizgaze WebServer
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

planitems.settings.js 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. var Bizgaze;
  2. (function (Bizgaze) {
  3. let Forms;
  4. (function (Forms) {
  5. let Controls;
  6. (function (Controls) {
  7. class PlanItems_Settings extends Unibase.Platform.Core.BaseComponent {
  8. init(formpropertyid, prop, callback) {
  9. throw new Error("Method not implemented.");
  10. }
  11. loadControl(containerid, prop) {
  12. throw new Error("Method not implemented.");
  13. }
  14. loadControlSettings(controlsettingjson, formpropertyid) {
  15. throw new Error("Method not implemented.");
  16. }
  17. loadPropertySettings(propertysettings, formpropertyid, DocPropertyName) {
  18. throw new Error("Method not implemented.");
  19. }
  20. bindEditFormDetails(formpropertyid, propval, DocPropertyName) {
  21. throw new Error("Method not implemented.");
  22. }
  23. loadControlPropertiesHtml(controlpropList, container) {
  24. return ``;
  25. }
  26. bindPropertySettings(prop) {
  27. var propertySettings = prop.PropertySettings;
  28. return "";
  29. }
  30. savePropertySettings(prop) {
  31. var propertySettings = prop.PropertySettings;
  32. return "";
  33. }
  34. loadSettingHtml() {
  35. return null;
  36. }
  37. bindControlData(controldatajson) {
  38. return null;
  39. }
  40. SaveControlData(controldatajson) {
  41. return controldatajson;
  42. }
  43. static Instance() {
  44. if (this._instance === undefined)
  45. this._instance = new PlanItems_Settings();
  46. return this._instance;
  47. }
  48. }
  49. Controls.PlanItems_Settings = PlanItems_Settings;
  50. })(Controls = Forms.Controls || (Forms.Controls = {}));
  51. })(Forms = Bizgaze.Forms || (Bizgaze.Forms = {}));
  52. })(Bizgaze || (Bizgaze = {}));