Versions Compared

Key

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

Table of Contents
maxLevel3

...

Function

isPaginationSupported(recordStore, success, error)

Description

Checks if the given records store supports pagination or not.

Output

A JSON String array object containing the following text in 'message' element if the given table;

  • if supports pagination -  returns "xxxxxxxxtrue"
  • if does not support pagination -  returns "xxxxxxxxfalse"

Example

Code Block
languagejs
client.isPaginationSupported(“SampleRecordStore”, function(data) {
      console.log (data[“message”]);
}, function(error) {
      console.log(“error occured: ” + error[“message”]);  
});

Sample output

Code Block
languagetext
 true