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.

label.setting.js 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. var Unibase;
  2. (function (Unibase) {
  3. let Forms;
  4. (function (Forms) {
  5. let Controls;
  6. (function (Controls) {
  7. class Label_Settings {
  8. loadControlPropertiesHtml(controlpropList, container) {
  9. return ``;
  10. }
  11. bindPropertySettings(prop) {
  12. var propertySettings = prop.PropertySettings;
  13. return "";
  14. }
  15. savePropertySettings(prop) {
  16. var propertySettings = prop.PropertySettings;
  17. return "";
  18. }
  19. loadSettingHtml() {
  20. throw new Error("Method not implemented.");
  21. }
  22. bindControlData(controldatajson) {
  23. throw new Error("Method not implemented.");
  24. }
  25. SaveControlData(controldatajson) {
  26. var postdata = new Array();
  27. postdata[0] =
  28. {
  29. ControlId: $("#hfControlId").val(),
  30. FormPropertyId: $("#hdnFormPropertyId").val(),
  31. PropValue: $("#txtText").val(),
  32. ControlPropertyName: $("#txtText").attr("data-controlpropertyname"),
  33. };
  34. postdata[1] =
  35. {
  36. ControlId: $("#hfControlId").val(),
  37. FormPropertyId: $("#hdnFormPropertyId").val(),
  38. PropValue: $("#ddlWidth option:selected").val(),
  39. ControlPropertyName: $("#ddlWidth").attr("data-controlpropertyname"),
  40. };
  41. }
  42. static Instance() {
  43. if (this._instance === undefined)
  44. this._instance = new Label_Settings();
  45. return this._instance;
  46. }
  47. }
  48. Controls.Label_Settings = Label_Settings;
  49. })(Controls = Forms.Controls || (Forms.Controls = {}));
  50. })(Forms = Unibase.Forms || (Unibase.Forms = {}));
  51. })(Unibase || (Unibase = {}));