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.

...