7/14/2010 5:05:55 AM
Title:
PrintAdvancedDataGrid
in PrintAdvancedDataGrid how can i find how many pages are in
Shawn
Points: 680
Posts:0
7/14/2010 5:20:59 AM
to get the total number of pages you need to check the number of visible rows in the dataGrid and then divide it by total rows.
say if visible rows are 10 and total 35 then
35/10 = Math.ceil(3.5) = 4 Pages
7/14/2010 9:20:54 PM
@privincent do you have any success. I also need to count the pages that will print. Is shawn's method working ?