pagebreak

Which browsers support page break manipulation using CSS and the page-break-inside element?

I'm trying to use the page-break-inside CSS directive, the class of which is to be attached to a div tag or a table tag (I think this may only work on block elements, in which case it would have to be the table). I've tried all the tutorials that supposedly describe exactly how to do this, but nothing works. Is this an issue of browser ...

Multiple questions on BIRT

Hi, I am new to BIRT. I have a requirement to print a HEADING based on a database value. How do I do that? How do I leave a Blank line upon break in one of the fields I am reporting? In the footer, I need to say "Page X of Y" where Y is the total number of pages? Your help is much appreciated - ASAP Thanks Nurani Sivakumar ...

SSRS report , get rid of page breaks in report

Hi, How do i get rid of the page breaks in the the SSRS report, making the report display in a single page. Thanks in advance, anna ...

page break in HTML

Hi, i want to use page break in html that means the reader cannot scroll down further until he select a link for it. <SPAN id=title><A name=BdToc_1 external=yes><h1 id="BookTitle" align="center"><font color="#B90000"><b>Choose Subject</b></font></h1> </A> </SPAN> <p> Contents.... </p> I want a page break before and after this. Please ...

CSS Printing: Avoiding cut-in-half DIVs between pages?

I'm writing a plug-in for a piece of software that takes a big collection of items and pops them into HTML in a WebView in Cocoa (which uses WebKit as its renderer, so basically you can assume this HTML file is being opened in Safari). The DIVs it makes are of dynamic height, but they don't vary too much. They're usually around 200px. A...

CSS page-break-after within table in Safari?

I want each row of a table to be printed (media="print", not "screen") on separate page. So my HTML looks like this: <table> <tr style="page-break-after: always;"> <td><p>Page 1</p></td> </tr> <tr style="page-break-after: always;"> <td><p>Page 2</p></td> </tr> </table> The page break works in Firefox and IE ...

Excel page breaks via VBA

As part of an overhaul of a report generator I saw what I believed to be inefficient code. This part of the code runs after the main report is generated to set the page breaks in logical positions. The criteria is this: Each Site starts on a new page. Group's aren't allowed to broken across pages. The code follows the above format: 2...

Reporting Services RDLC Table Page Breaks within a Cell with a SubReport

I am having a paging issue with my RLDC report that has a SubReport. The report has a table that prints the header data, then has a SubReport that I placed in a detail cell row within the table to print several detail lines that relate to the header data. This works as I want. However, the SubReport can span more than one page and this ...

Hiding Page Breaks in Excel

Following on from my previous questions: I have implemented a series of checkboxes with which users can hide/unhide ranges of data. This is great - it works. The problem is when the users go to print - the hidden data is hidden but the pages are still there but blank. If the page breaks are left to their own devices then everything is...

Putting Page Numbers in a Document

How do you add a page number from java without using any third party library in a document and which can be treated as a new page in MS Word? Can Java create/manipulate an MS Document? ...

Report Services: Controlling page breaks inside a table

Hi I'm using a table on my report to present the data. Since it was a lot of data and I wanted to print the report on a A4 page, I split each row into 3 different rows. My problem is when the report goes to the second page, I want it to break before or after the 3 rows. example: name age address contact name ...

To have no pagebreak after \include in LaTeX

My LaTeX makes me pagebreaks after each subsection because my subsections are in separate files. I use the command \include{file} which adds a pagebreak after the use of it. I would like to have no pagebreak caused by the use of \include{file}. How can you no pagebreak after the use of include -command? ...

How do I keep a <td> element from appearing across multiple pages when printed from IE?

I have an HTML table of data where each cell can have multiple lines of text. When the table is printed, it's possible for a row to be broken up so that some of the data appears at the bottom of the first page and some appears at the top of the next. Is there an equivalent to Word's "keep together" functionality that will prevent a page ...

iTextSharp: SplitLate/SplitRows?

I have an issue where I have a table (PdfPTable) that may extend past the length of the page. I have tried looking up how to "split" a table onto more than one page but iTextSharp is pretty poorly documented in this area. Does anyone know how to do this without choosing an arbitrary Y position on the page and telling it to split if it's ...

How to ensure that a header line and its associated content line to be displayed on the same page ?

Hello all, I'm stuck since yesterday with a page break problem on reporting services (2008). I've also have to add that I've started to work with reporting a week ago, so I may misunderstand some of its aspects. Let's say I've got a dataset, holding two fields, namely A and B . To display these data, I've created a table which looks li...

Maual Page Break in TCPDF

I am using TCPDF to generate the PDF in one of my project. I simply create a HTML and give it to the TCPDF to handle the PDF generation. But now I have certain HTML where multiple certificates are added one after the other and I want to have a page break into it. Page Break should be decide by HTML i.e. I want to know if there is any ide...

How can I insert page breaks between groups in Crystal Reports with two-sided printing?

In group expert options I have set Keep Group Together, which makes sure a new page is set. With two-sided printing enabled, how can I make sure that a new group always forms on a new sheet of paper? Can this be done in the formula expert? Is there some way of checking if the page I'm on is even or odd and insert a page from there? Just...

LaTeX: How to create left aligned paragraphs and right aligned authors of paragraphs

Please help me in creating LaTeX document with the following structure Text Author Text Author Where Text is a block of 2-10 lines left aligned and Author is one line aligned to the right, and I need these Text+Author blocks to always appear on the same page. ...

COLDFUSION: cfdocument and forcing a pagebreak

I am creating a dynamic PDF in ColdFusion and having an issue with "pagebreak". The page in question could have 1 record, or up to 60+ records. Each record is displayed in 2 rows of a table. Some of the returned records are being split between pages (first row is at the end of page one, the second row is the top row of the next). A ...

Page break in Html2Pdf

Hello everybody, I am in the process of generating a dynamic pdf file, which contains data of around 10,000 users, in general the app is developed using mySql and PHP. The dynamic content is so heavy that, I found it difficult to process with fpdf() class. So I converted my output php page as a html file using ob_get_clean(). Now...