12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- var Bizgaze;
- (function (Bizgaze) {
- let Forms;
- (function (Forms) {
- let Controls;
- (function (Controls) {
- class PlanIncentives_Settings extends Unibase.Platform.Core.BaseComponent {
- init(formpropertyid, prop, callback) {
- throw new Error("Method not implemented.");
- }
- loadControl(containerid, prop) {
- throw new Error("Method not implemented.");
- }
- loadControlSettings(controlsettingjson, formpropertyid) {
- throw new Error("Method not implemented.");
- }
- loadPropertySettings(propertysettings, formpropertyid, DocPropertyName) {
- throw new Error("Method not implemented.");
- }
- bindEditFormDetails(formpropertyid, propval, DocPropertyName) {
- throw new Error("Method not implemented.");
- }
- loadControlPropertiesHtml(controlpropList, container) {
- return ``;
- }
- bindPropertySettings(prop) {
- var propertySettings = prop.PropertySettings;
- return "";
- }
- savePropertySettings(prop) {
- var propertySettings = prop.PropertySettings;
- return "";
- }
- loadSettingHtml() {
- return null;
- }
- bindControlData(controldatajson) {
- return null;
- }
- SaveControlData(controldatajson) {
- return controldatajson;
- }
- static Instance() {
- if (this._instance === undefined)
- this._instance = new PlanIncentives_Settings();
- return this._instance;
- }
- }
- Controls.PlanIncentives_Settings = PlanIncentives_Settings;
- })(Controls = Forms.Controls || (Forms.Controls = {}));
- })(Forms = Bizgaze.Forms || (Bizgaze.Forms = {}));
- })(Bizgaze || (Bizgaze = {}));
|