Liquit.Applications.Move
  • 12 Dec 2023
  • 1 Minute to read
  • Dark
    Light
  • PDF

Liquit.Applications.Move

  • Dark
    Light
  • PDF

Article Summary

The Liquit.Applications.Move function changes the position of an application. This determines the order of the applications shown if no explicit sorting options are used in the Liquit.Applications.List function.

Usage and example

You need to specify at least the ID of the targeted application and the target position:

Liquit.Applications.Move(

  // The id of the application you want to move.
  '00000000-0000-0000-0000-000000000000', 

  // The target position.
  0,

  // Callback that will return a fault object when something goes wrong.
  function (fault, result) {
    console.log(result);
  }

);

Was this article helpful?