Table of Contents | ||
---|---|---|
|
Overview
Function |
|
---|---|
Description | Checks if the given records store supports pagination or not. |
Output | A JSON object containing the following text in 'message' element if the given table;
|
Example
Code Block | ||
---|---|---|
| ||
client.isPaginationSupported(“SampleRecordStore”"SampleRecordStore", function(data) { console.log (data[“message”"message"]); }, function(error) { console.log(“error"error occured: ”" + error[“message”]); }); |
Sample output
Code Block | ||
---|---|---|
| ||
true |
...