Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by dian.kwok on Sep 05, 2008 02:25
open dhtmlx forum
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.
Answer posted by Support on Sep 05, 2008 03:09
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());