Subforms across page breaks

In LiveCycle, how do you keep subforms from being split across page breaks?  I'm working an a form in which several subforms can be added or deleted.  If I add enough of any of them, when they get to the bottom of the page, instead of getting a new page the subform splits between the pages.
Here's a basic hierarchy of the form (excluding master pages, content areas etc.)
MainForm
     PageA
          SubformA
          SubformB
          SubformC        
     PageB
          SubformA
          SubformB
          SubformC
     PageC
          SubformA
          SubformB
          SubformC
The subforms that can be added/deleted are SubformA, SubformB, SubformC on each page.
The idea is to have PageA, PageB and PageC always start at the top of the page, and when enough of any of the Subforms are added, the Subform which would be split at the bottom of the page goes to the top of the new next page.   So if I add enough of PageA, SubformA to overflow the page, the last instance of PageA, SubformC goes to the top of a new page, and PageB goes to the top of the following page.

Never mind everybody,  I figured out what I did wrong.
The size of the content area on the master page must be the size of the form minus the space allowed for page headings. 
For example, let’s say that you have a form which is 8” wide by 11” long.  On your master page, there is a 1.5” heading which will print on each page across the top of the page.    The content area should be 8” wide by 9.5” long.    
I made the mistake of having the content area 8” wide and 11” long, thinking it should be the same as the form size and that the heading on the master page was included in that 11 -inch-length.   Wrong.
When I pressed an add button to add a subform enough times so that the subform would overflow the page, instead of appearing on the top of the next page like I anticipated, the subform appeared to hide underneath the page break and the header of the next page.  That's because the content area wasn't filled yet. It still had another 1.5" to go.  I had to press the add button twice to get a subform to appear on the next page.  In the meantime, the new subforms continued to appear to slide under and hide underneath the page break and next page header. 

Similar Messages

  • Issue tabbing across page breaks in dynamic form

    Hi all,
    I have a strange problem that I'm having trouble getting to the bottom of, relating to my dynamic form.
    This form grows and shrinks depending on how the user fills it out.  I have a questionnaire section where certain questions are hidden or shown depending on previous input.
    Things get interesting when I look at the tab order.  Sometimes when tabbing forward or backward across page breaks, the focus lands on a spot that I cannot identify.  There will be no cursor and I can not type.  However if I continue to tab in the same direction, I can see that it is still going in the correct sequence.  It just looks like for some reason, in those places, focus is put in the wrong component.  But if I type different input into the prior fields (ones that affect the length of the pages) that causes the field to move to different place where it's not adjacent to a page break, and then tabbing to the field in either direction works fine.  It seems that only when it's beside a page break, it becomes problematic.
    Also, it only seems to be a problem if the field gets moved to be adjacent to a page break AFTER the form is initially rendered.  If the field was originally beside a page break by default, then it seems to work fine.
    Just to rule out a possible problem with the tab order configuration, I set my from to Automatic tabs, and even went as far as removing all the <traversal> elements from the form.
    After doing either of those things, the problem still persists.
    Has anyone seen this before?

    Hi Eric,
    I have seen funny behaviour when tabbing within Preview in LC Designer. It may be picking up a read-only item in the Master Page.
    Good luck,
    Niall

  • How to distribute subforms across pages without splitting them?

    Hi, I got several subforms placed in 4 or 5 pages, what I'd like to do is to show them in a way that if a subform can't be shown in a single page (there is no chance a subform will occupy more than 1 page height) then that subform to be palced at the start of the next page, isntead of being cut and split into the previous and the next.
    Do you know how to do this?.
    Thanks!.

    Click on the subform in the hierarchy. Under Object >Subform unclick "Allow Page Breaks within Content".

  • Text Field repeating at Page Break in Interactive Adobe form in Webdynpro Java

    I have requirement in which Text field containing 'Rich Text' data has a huge data coming at runtime. It is displaying correctly without any scrollbars on a single page .Now the problem is when data exceeds to next page ,text field repeats it with first line and also adds scrollbar to text field.
    I have set text field properties like Allow Page Break,Allow multiple lines ,Height Auto fit.
    Also The Text field is in flowed Subform ,Allow page breaks checked.
    Kindly provide solution in quick time..

    Yes I have checked all the subforms Flowed. Text field is working good in Preview Pdf Option of NWDS.
    But when I generate the pdf on server, when TextField flows to next page, on next page it repeats from first line.

  • Page break issue with subform AddInstance

    I would like the table on page 4 of this form --- http://www.tahc.state.tx.us/10-09_TrichomoniasisEpiInvestigation.pdf --- to be allowed to break across a page if necessary. I want the button on that page to add another instance of the table at the top of the next available page.
    I am clearly missing something about subforms and overflow because in LCD, this is a 5-page form. When it's opened in Acrobat, it's a 7-page form (the table displays on page 6) and and the table extends past the bottom of the page so that the button is not visible.
    Any leads on how I can fix this? Thanks.

    Thank you for the tip. Your fix is a big step in the right direction --- the form renders as it should but only if I don't enable usage rights for Reader. After usage rights are enabled, the page break problems reappear and the blank table runs off the bottom of the page. Do you know why this occurs? (I've reposted your fixed form with user rights enabled---http://www.tahc.state.tx.us/10-09_TrichomoniasisEpiInvestigation.pdf.) Thanks again.

  • Check box for activating Page break for each subform in Binding is inactive

    Hi,
    I am designing a PO layout copying MEDRUCK_PO to a custom form.
    I am facing a problem here, as the checkbox for "REPEAT SUBFORM FOR EACH DATA ITEM" in Binding Tab is inactive(display only mode). Also in Subform tab, checkbox for "ALLOW PAGE BREAKS WITHIN CONTENT" is in inactive mode.
    I can see the same checkboxes are active in the standard Adobe form on my system.
    Can you please help me understanding the issue with it?
    Thanks,
    Divya

    Dear Friends,
    I have got the solution from my technical lead for the below issue, I like to share this resolution with you all.
    Best Regards,
    Ravishekar.Thallapally
    *&      Form  after_line_output
          After line output event is handled via this form
          L_V_LINE : Capturing line value for page break.
    FORM sub_after_line_output1 USING l_v_line TYPE slis_lineinfo."#EC CALLED
       DATA: l_v_int  TYPE int1.
       IF l_v_line-sumindex IS NOT INITIAL .
         l_v_int = l_v_line-sumindex MOD 2 .
         IF l_v_line-subtot = 'X' AND l_v_int = 0.
         Write:/ sy-uline.
            NEW-PAGE.
           CLEAR:l_v_int.
         ENDIF.
       ENDIF.
    ENDFORM.                    " after_line_output

  • Can we Restrict Rows or Stop rows from breaking across pages in XSL-FO

    Hi,
    Iam working on PO Print report and my requirement is to Stop rows from breaking across pages.
    Suppose there are three Lines in a PO.Then the information of the Third line of PO comes partly on page1 and the rest on Page 2.I need all the line information in a single page and not break across pages.Can i control the rows from breaking across pages....If not then can i limit the Rows?
    Any Help would be appreciated....Thanks

    Hi vetsrini,
    not very sure where to add the code.I have tried but its not working...i have sent u the xsl file on [email protected]
    Please let me know where i should add the code.
    Thanks in advance

  • Adding Subforms on Click + Page Breaks Problem

    Hi all,
    i made a form containing a few Sub forms and Text Fields which grow by the Number of Lines the User writes.
    However, I made one button to add a sub form containing 5 of these text fields
    and it works fine but when it comes to the end of the page and I click on the button again, it doesn't break to the next page, the new sub form is simply added below the last, half cut by the end of the first page...
    So my Question is how do I add a page break after the page is either full or a certain number of those sub forms exist?
    Kind Regards

    I have a similar problem. I have 2 subforms side by side that have independent columns of data. Either one of these subforms may expand onto a second page. I am stumped on how to keep the positioning correct (IE: If the content area flows western style it looks correct on page 1, but if I flow to page 2 the second column ends up on page 2. But if I position the two columns, then page break doesn't work).
    For a single row of data you need to make sure your positioned fields are in a subform that is inside a flowed subform that allows page breaks and adjusts to fit.

  • Allow page breaks with content is Disabled for Subform

    Hi,
    I want to display item data on form.I created a subform and dragged table from data view.
    Allow page breaks with content is grayed out!!
    Plus If i want to add a footer in TABLE option this is also grayed out!! Can't we create a footer from the dragged table?
    FYI.. I went to hierarchy view created subform right click page and then dragged table in to this subform.
    Am i doing it right?
    Rgds
    Vara
    Edited by: Vara K on Feb 5, 2009 8:40 PM

    Resolved myself.
    I was creating subforms in page1 instead of the TOP context node.
    So What I did is created a subform from top node and then i got pagebreak options and then dragged table.. so much fun! with forms.
    rgds
    Vara

  • Page-Breaks for Expanding Subforms

    Hello,
    I've got a new Training Rquest Form that I'm designing. I'm having a bit of trouble though as I was hoping that I would be able to get the expanding parts of my form to go over to the next page. I've created the form to be dynamic so that you can click a button which uses the instance manager to create another subform. So, you would have something like : "Add Teacher" which adds a new line in which you can input the information about the teacher.
    I've also got it set up so that by pressing a button, an entirely new section will appear to enter more information. The problem comes when I try and create another of these and it goes off of the page. It SHOULD be going to the next page but I can't figure out why it isn't. I've checked all of the options and as far as I can see, everything allows page breaks, the subforms seem to be working and really at this point I just need someone else to take a look at it.
    I could make the form so that it makes a new page visible that I've already made but I would much rather do this the correct way rather than the lazy way of just copy-pasting.
    If anyone is interested in helping me out, let me know and I'll email the form to you since I guess you can't add files here and the section I need looking at is several hundred lines of XML so that's no good either. (using LC version 8.2 by the way)
    On an unrelated note, I've noticed that I'm getting repeated lines in my forms in the XML. This issue has actually caused some of my forms to be so bloated that I can no longer open the XML tab because LC crashes. I realize that this is a problem with version 8.2 that they've fixed for 9 but I don't have version 9 and I'm not about to buy it just for this problem. So if anyone knows what exactly causes this copying of the XML lines, please let me know so I can try to avoid that.
    The lines that I see copied most often look like this:
    <?templateDesigner StyleID aped3?>
    They're always template files. I think it might be somehow related to copy-pasting from my testing? Anyway, any help would be appreciated on either problem. Thanks everyone!

    Yes that worked! That was very helpful.
    As for the other issue, I was hoping more for an explaination of why it happens so that I can avoid it in the future. It's not really ideal for my co-workers to have to send their forms to Adobe all of the time and it's wasting your time.
    If I can stop the problem before it happens, that would be better and we'll be able to just avoid the problem for the most part.
    I'd also like to ask about a script that I've been trying to get work (I know I've got a lot of questions but I figure since I'm here anyway...) I'm basically trying to keep track of the number of Sessions, Dates, Intructors, etc. that the user has on the document (by them clicking the expand buttons). I've been trying to do this by using a hidden text field and changing the value. This works with things that have specific responses because I'll know what number it is, I can just say something like Textfield1 = 1
    I can't seem to add onto it though. I'm not sure what the problem is, here's the script (in Javascript):
    HiddenValueInst.rawValue = HiddenValueInst.rawValue +1;
    This ends up simply adding a "1" to whatever is in my hidden Value field. Is there a different syntax that I can use for this? Should it maybe be a text-only field? I haven't been able to figure out how to access the instance number from the Instance Manager but if you know how to do that, it would be helpful as well.
    Thanks for the help so far.
    Edit- Nevermind, it looks like switching it to a numeric field fixed the problem. I don't know why I didn't think of that before.

  • Table breaking across pages

    I have a table that flows to 4 pages through threaded frames. Is the only way to make the table different lengths on each page is to adjust the frame height? Or can you insert multiple break characters throughout the table to have it break where you want it?
    Thanks,
    Phil

    Why not use a hard row break? It's the Table equivalent of page breaks. You can also set Keep with Next Row, and let these handle unwanted breaks.

  • 2-column layout with correct page breaks

    Hi there,
    I am trying to produce a 2-column layout in my form.
    The problem is: These columns stretch over more than one page and I just cannot get the page breaks right.
    I have a flowed layout with two adjacent subforms which form my columns. In these column subforms I fill lots of data from XML.
    Problem 1 is: At the end of the page I miss about 5 lines. They vanish in the page break.
    Problem 2 is: My second column starts getting filled only on the second page (which happens to be the page where the first column ends).
    I also tried this with one table with exactly one row. But there all lines after the first page disappear and I get empty pages instead.
    Has anyone ever come across this problem?
    What is a good safe way to build dynamic 2-column forms?
    Ulrich

    Hi Paul,
    the former. It is NOT like in a newspaper where the content runs from left to right from one column into the next and finally into the leftmost column of the next page.
    Im my case the content of the 2 columns is completly separat from each other: The data in the left column is distincly left-column-only data. As is the data in the right column distinctly right-column-only data.
    Actually it is not even sure, that the left column is longer than the right.
    It is absolutly o.k. to have  3 pages where the left column is empty and only the right column is filled.
    An example would be: Technical data of two articles to be compared: Left is the Mercedes-data and right is the BMW-data.
    Ulrich

  • Cell sizing and page breaking

    Hi
    Firstly, sorry if this is somewhere but I have very slow wireless internet.
    I have created a form in adobe adcrobat pro 8.
    Question 1:
    I know how to have text go across more than one line - is there a way to make the cell and/or row expand to accomodate extra text/lines?
    Question 2:
    I have set up a table that allows unlimited rows to be added by the end user. I have marked it as allows break across pages however when I add more rows it just goes off the bottom of the page over the 'footer' and everything.
    Any help would be greatly appreciated.
    PeitaC

    Usually you can control the display area using the Subform in the Master Page. And then you need to set your root subform to Flowed content type.
    Try these two otpions and if you still have issues send the form to [email protected] so I can have a look at it.
    Thanks
    Srini

  • Page break problem in rtf template

    I have a nested group as follows:
    For each sub-vote sub-vote desc
    - For Each sub-program details....end of for each sub-program
    total for sub-vote
    end of for each sub-vote
    If the sub-vote and all of its detail records won't fit on a page, then I need a page break.
    The fields are set up in a table. I have unchecked the 'allow row to break across page' for all 4 rows.
    I tried drawing a new table around the existing 4 rows, but I can't seem to uncheck the 'allow row to break across page' for the new table. How do I change properties for the 'parent table' - I'm looking for something that is equivalent to 'select parent frame' from report builder.
    I also tried checking the 'keep with next' checkbox on the paragraph/format for each row.
    When I preview/pdf in word, my sub-programs within a sub-vote are still displaying on differrent pages.
    If anyone can make any suggestions, I would greatly appreciate it.
    Thank you.

    I created a new row and then copied the cells (minus the 'for -each' and 'end of for each' cells) as a nested table. Page breaks are now working correctly.
    Thank you.

  • When exporting to epub, only about 1/3 of my chapters are getting the page breaks. Each chapter is in its own doc, and I've tried splitting it apart by doc. and by H1, with no luck. HELP

    All my paragraph styles seem to jive, and no matter what I do, most of my chapters seem to miss their page breaks. I've heard of others having this issue with older versions of Indesign, but I'm on CC2014, and I thought that should be fixed by now. I really don't want to have to learn HTML code and go break open the epub doc to fix it manually, because that doesn't always work across all devices either.  I know others have to of  run into this problem before. What am I doing wrong?

    Make sure the paragraph style applied to the chapter title (if that's the first line of each chapter) is tagged. Open the paragraph style and go to Export Tagging and check Split Document (epub only). Then when you export (assuming you are using reflowable) under General>Split Document check Based on Paragraph Style Export Tags. Try it and let us know if this helps.

Maybe you are looking for

  • How do I upload an audio file for voicemail?

    We are looking at having all our voicemails professionally recorded.  Can anyone tell me how to import an audio file for the iPhone voicemail and what format it needs to be in? Thank you!! Jay

  • How do you set the home page for firefox for android?

    I have firefox installed on my tablet. How do i set the home page or start page?

  • How to Configuration PDC Management in SAP

    Dear Gurus Please guide me how to configuration PDC management in SAP FI. Regards Tapan Maity

  • Cluster.exe  RESOURCE get error like 1214

    Dear Team, we have faced below issue when we install the ECC on windows cluster. Can you please suggest how may i resolve the error. please find my screen shot for your further clarifications. Execution of the command "cluster.exe RESOURCE "SAP IEP N

  • Flash video encoder and OS X

    I have Adobe Flash CS3 Video Encoder on my Mac OS X and am trying to convert movies to .flv files. They encode OK, but on playback, the movies are consistently cut off in the middle. Seems other folks are having this problem and are getting no answer