Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA

Versions Compared

Key

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

Initiates remove action of specified items.

Parameters 

 

Name TypeDescription

source

required

array

array with ids of selected items

target

required

string

id of selected folder

cb

optional

functioncallback function


Example

 

Code Block
languagejs
this.filecmdMove = function(source, target, cb) {
  return _request({
    method: 'POST',
    url: '/file/move',
    data: {
      ids: source,
      target: target
    },
    callback: cb
  });
};

 

 

Quatrix JavaSctipt APIs QJA