Liquit.Applications.Move

Prev Next

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);
  }

);