Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
55
Total at the UltraWebGrid footer with paging enabled
posted

Hi,

I am using UltraWebGrid and everything works like a charm so far untill I noticed that the total at the footer is just for that page not for the whole grid. I can easily calculate the total outside the grid and put it into the footer but I am also using filtering so when filter applies the total remain unchanged.

The code that I am using is

 

 

for 

 

(int i = 1; i < this.UltraWebGrid1.DisplayLayout.Bands[0].Columns.Count; i++)

{   this.UltraWebGrid1.DisplayLayout.Bands[0].Columns[i].Width = Unit.Pixel(130);

 

 

this.UltraWebGrid1.DisplayLayout.Bands[0].Columns[i].Footer.Total = Infragistics.WebUI.UltraWebGrid.SummaryInfo.Sum;

)

My question is how we add totals at the footer while filtering and paging are enabled?

Thanks in advance