Any tables that don't fit into the remainder of a page immediately jump to the start of the next page. The desired behaviour is that a table begins exactly where it is, and then splits over to the next page if necessary.
I'm using a table style. I've tried setting various things (CSS: table, tr; Table style: Print options) to avoid break, but nothing is working.
On another note, any way to repeat table headings when tables do flow over from one page to the next?
Ideas?
Tables always start on new page
Tables always start on new page
The newest noob in town.
-
techwriter31
- Propellus Maximus
- Posts: 551
- Joined: Wed Mar 05, 2008 10:50 am
Re: Tables always start on new page
For the table jumping to the next page, do you have the following specified in your stylesheet?
To repeat header rows, you can specify the following in your stylesheet:
Code: Select all
table
{
page-break-inside: avoid;
}Code: Select all
thead
{
display: table-header-group;
}Kellie
Re: Tables always start on new page
Yup.techwriter31 wrote:For the table jumping to the next page, do you have the following specified in your stylesheet?Code: Select all
table { page-break-inside: avoid; }
The newest noob in town.
-
ChoccieMuffin
- Senior Propellus Maximus
- Posts: 2650
- Joined: Wed Apr 14, 2010 8:01 am
- Location: Surrey, UK
Re: Tables always start on new page
Then that is your problem. You have TOLD Flare not to break the table! So if you remove that bit from your stylesheet, you should find that it behaves the way you want it to.Scotty wrote:Yup.techwriter31 wrote:For the table jumping to the next page, do you have the following specified in your stylesheet?Code: Select all
table { page-break-inside: avoid; }
Started as a newbie with Flare 6.1, now using Flare 2024r2.
Report bugs at http://www.madcapsoftware.com/bugs/submit.aspx.
Request features at https://www.madcapsoftware.com/feedback ... quest.aspx
Report bugs at http://www.madcapsoftware.com/bugs/submit.aspx.
Request features at https://www.madcapsoftware.com/feedback ... quest.aspx