Table of Contents | ||
---|---|---|
|
...
Function |
|
---|---|
Description | Checks if the given records store supports pagination or not. |
Output | A JSON String array containing the following text in the ‘message’ element within the argument of the success callback.if the given table;
|
Example
Code Block | ||
---|---|---|
| ||
client.isPaginationSupported(“SampleRecordStore”, function(data) { console.log (data[“message”]); }, function(error) { console.log(“error occured: ” + error[“message”]); }); |
...