I have a project in DevExtreme,mobile.
JavaScript:
var example = new DevExpress.data.DataSource({
store: example.db.deneme,
requireTotalCount: true
}).load().done(function (result) {
alert(result.length);
});
// this
In this code, 'result.length
' returns the correct answer.
How to get total count ('result.length
') in 'this
' place.