Unknown macro: {next_previous_links}
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Overview

Function

isPaginationSupported(recordStore, success, error)

Description

Checks if the given records store supports pagination or not.

Output

A JSON String array containing the following text if the given table;

  • supports pagination - "xxxxxxxx"
  • does not support pagination - "xxxxxxxx"

Example

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

Sample output

 

 

 

 

  • No labels