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.

shiftcalendar.settings.js 1.6KB

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