In my datatable i need to have row counting which i get like this:
scheme:{
$init: function(obj) { obj.row_count = this.count();}
}
also i need to sort data in this table which i get like this:
this.sort("sorting", "asc", "int");
}
And as sorting happens after initialization all my row counting breaks. How can I solve it?