I am trying to produce a PDF that shows a month calendar in grid format. I add a Grid to a Band and then setup the grid header (.Repeat = True). When creating the rows of content, I set the KeepSolid property to true.
When the calendar renders, the grid header appears both at the top of a new page and also within the page above the row that should be displayed on the next page.
Confusing. I have attached a zip of the .aspx and .aspx.vb files as well as a sample output (.pdf)
Has anyone had experience trying to keep grid rows together and repeating grid headers on each page?
Hello Rob,
I suggest you adding the header to the section but not in the grid
You should remove the grid header and place its content in the section header (use Section.AddHeader() )
Please refer to the sample attached.
Good idea. I will give it a try.
THANKS!