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
210
Values from Footer for PDF. Anybody to help ???
posted

Can Anybody help ?.
Is there a way by which i can get the individual values of footer in webgrid ? . As  
i need to use the values in different calculations. Any Information regarding this will be greatly appreciated.


For eg :- The logic  i am using to create footer :-

  For i = 0 To columns.Length - 1
                    With grid
                        '.Columns(columns(i)).Footer.Total = Infragistics.WebUI.UltraWebGrid.SummaryInfo.Sum
                        .Columns(columns(i)).Footer.Total = calculation
                        .Columns(columns(i)).Footer.Style.HorizontalAlign = HorizontalAlign.Right
                        .Columns(columns(i)).Footer.Style.CssClass = cssFooter
                        .Columns(columns(i)).Footer.Style.Font.Bold = True
                    End With

                Next


I need a way to retrieve the individual calculated values of footer, to use them in a different place.


TIA