how to show total records in dhtmlxGrid with toolbar paging

Hi i wonder whether i could show the total records info when using “toolbar” skin in paginal output?



The toolbar skin only show records [from] to [to] and not showing total records of the data loaded.



Thanks in advance.

You can adjust it in code of extension

dhtmlxgrid_pgn.js
iButton.setText(this.i18n.paging.records+(start+1)+this.i18n.paging.to+end);
can be replaced with
iButton.setText(this.i18n.paging.records+(start+1)+this.i18n.paging.to+end+" total: "+this.getRowsNum());