Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
akioma.invokeServerTask({
????????????name:??      name: "Akioma.Crm.MasterData.System.ApplicationSettingsBT",
????????????methodName:??
      methodName: "GetApplicationSettingsByDomain",
????????????paramObj:??{??plcParameter:??
      paramObj: { plcParameter: {ApplicationSettingsDomain: "ckEditor"}?? }
????????    }).then((response)?? =>?? {
?? ?? ??//process response ?? ?? }??catch??(e)??{
?? ?? ??//process error
?? ??}
 console.log(response);
});

The above call will return all the settings under the "ckEditor" domain.

...

Here, nothing needs to be changed. The ApplicationSettingsKey ApplicationSettingsDomain property will be filled automatically from the backend.

...