|
Rank: Member Groups: Member
Joined: 7/10/2012 Posts: 14
|
Hi. I am just facing a trouble when using HtmlToPdf.ConvertUrl method. I already have added a principal table whith thead and when I use the convert method it repeat the header for all pages. The problem is I have indise this table a gridview which can span in more than one page. I need that the header of gridview repeat in all pages the information span. I don´t know how can I archive it. One way I think to do it is iterating on all pdf pages and adding the table header programatically using acmTable but I don´t know how and neither if it is the best way. Thanks
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi, You will need to render your table header using THEAD. Once you use that it will be automatically repeated: http://www.essentialobjects.com/doc/4/htmltopdf/table_header.aspxThanks!
|
|
Rank: Member Groups: Member
Joined: 7/10/2012 Posts: 14
|
Thanks. Question. These is my structutre <table> <thead> ......... </thead> <tr><td> -----another tables ----- <table-n> <thead> ......... </thead> -..... </table-n>
</td></tr>
</table> For the parent table the header is repeating as expected, but for table-n not. Should it repeat the header also? Thanks!!!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi,
No. Table header/footer repeating occurs on a single level only.
Thanks!
|
|