BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
{
"page_number": 5,
"page_size": 20,
"total_record_count": 521,
"records": [
{
"id": 1,
"name": "Widget #1"
},
{
"id": 2,
"name": "Widget #2"
},
{
"id": 3,
"name": "Widget #3"
}
]
}
actual:Object | Contains all the records as it is from the data source. |
count:13304 | Contains total count of records. |
query:ej.Query | Contains filtering based on query like page index and page size, no of records to take. |
request:Object | Contains all the necessary data before posting a request. |
result:Array[5] | Contains filtered results on the data based on query. |
xhr:Object | Contains xhr data. |
var query = ej.Query() .from("Orders") .select("OrderID", "CustomerID", " EmployeeID", "Freight", "ShipCountry") .page(1,5) .requiresCount(); var execute = dataManager.executeQuery(query) // executing query .done(function (e) { // access the response object }); |