White space after flowed layout/expandable fields?

Hi,
I have a few pages on a form with a flowed layout where the text fields expand.The problem I am having is when the text field expans and continues on the following page,its leazing an entire white space right after it.Is there a way to do this so eventhough the text field expands onto the next page,the content on the next page continues right after the expanded field without a page of white space?
Thanks.

Hi,
You need to check Allow page breaks within content option for the subform. Object > Subform >  Allow page breaks within content.
By default even for the field this option would be checked if it is not You need to do samething even for the field.
This would work.
-Vjay

Similar Messages

  • Removing white space after Spry Menu Bar...

    I having a bit of a problem trying to remove a little white space after my Spry Menu bar, when I set it to 8.6em theres a little white space, when I set the width to 9.7 it goes too far, I changed it to 137 pixels, however in Firefox and IE, it messes up the layout.
    Also what do you do if there a different browsers, where some layouts are out of place, do you need to detect the browser with JS?

    The website is not live yet, everything is stored locally so heres the code: -
    HTML: -
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <link rel="stylesheet" type="text/css" href="website_style.css" />
    <title>My Website</title>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <div id="wrapper">
      <div id="banner"></div>
      <div id="menu">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="#">Home</a>      </li>
          <li><a href="#">Personal Profile</a></li>
          <li><a href="#">Education</a>      </li>
          <li><a href="#">Work Experience</a></li>
          <li><a href="#">Skills</a></li>
          <li><a href="#">Additional Info.</a></li>
          <li><a href="#">Referees</a></li>
        </ul>
      </div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>
    CSS: -
    @charset "utf-8";
    /* CSS Document */
    body{
        background-size:auto;
        background-repeat:no-repeat;
        background-color:#967255;
        padding: 5px;
    #wrapper {
        width:968px;
        background: #FFF;
        padding-left:0px;
        padding-right:0px;
        overflow:hidden;
        height: auto;
        border-top-left-radius:20px;
        border-top-right-radius:20px;
        margin:0 auto;
    #wrapper #banner {
        background-image:url(banner.gif);
        height: 100px;
        width: 968px;
        margin-left: auto;
    Spry Menu CSS: -
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: auto;
        font-family: abeatbyKai;
        height: auto;
        background-image: url(../paper.gif);
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 8.68em;
        float: left;
        height: 3em;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0em;
        margin-left: 0;
        padding-top: 0;
        padding-right: 0em;
        padding-bottom: 0;
        padding-left: 0px;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        z-index: 1020;
        cursor: default;
        width: 8.2em;
        position: absolute;
        left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        width: 8.2em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position: absolute;
        margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;
        background-color: #EEE;
        color: #333;
        text-decoration: none;
        background-image: url(../paper.gif);
        padding-top: 0.5em;
        padding-right: 0.75em;
        padding-bottom: 1.5em;
        padding-left: 0.75em;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        background-color: #33C;
        color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        background-color: #33C;
        color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarDown.gif);
        background-repeat: no-repeat;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarDownHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;

  • Problem with flow of expandable fields

    Hi everyone,
    I have important problem with flow of expandable fields in table in dynamic PDF form. The issue I am talking about you can see at the top of column 3 on page 2 in PDF in link below.
    Here is uploaded PDF form and sample XML data (form has import button and is ReaderExtended that you can easily test it and see my problem):
    http://www.speedyshare.com/718224676.html
    Generally I have created table with 3 columns using Table object (each field has allow multiple lines selected and expand to fit).  It is closed in FormBody subform which is flowed subform.
    Row in table is repeatable and has “is allow to break page” setting set on.
    Sometimes when there is a lot of text and row page break there is problem with flow.
    For example text from one rows overlaps on text from next row.
    I tried to solve this problem by changing row height, indents, font size, line spacing but always when I thought that I have fixed it  I got another data which generated the same flow problem.
    Did anyone met this problem earlier and found solution to this issue? This is really important for me and I am really in dead end so any hints would be really helpful.
    I am using Adobe Livecycle Designer 8.1 and PDF form target is 8.
    I really appreciate any help in this problem.
    Thanks,
    Kamil Dłutowski

    I posted link to my form in my first post.
    Here it is: http://www.speedyshare.com/718224676.html

  • PS to PDF files getting white space after 127char

    We've had an issue come up at our shop recently that's stumped us. We are spooling .PS and using Distiller to provide PDF with high quality EPS. We noticed the issue as we have a data element that is read by PDFTRON API and the service is seeing line breaks after 127char.   We open the same PDFs from Distiller in Illustrator and can view some random white space after the 127 char and at times beyond. The white space/line break are not present when copying the data element from the PDF into a text editor (Ultra Edit) and are also not showing in the .PS file???

    Distiller Server product:
    Adobe Distiller 9
    Professional Version 9.4.2220
    Maybe I'm getting ahead of myself here-
    Advanced Setting Screen:

  • Extra white-space after page proccess

    I am trying to suppress white-spaces after the page is
    processed.
    Usually it doesn't bother me, but it does bother javascript.
    Explanation:
    1. I am sending an xmlhttp request to coldfusion to process.
    2. Coldfusion runs a stored procedure on an oracle database
    that returns the results as XML.
    3. Coldfusion returns the XML back to the client:
    <cfoutput>#XmlParse(ajaxXML)#</cfoutput>.
    4. The client (Javascript) runs the function that handle the
    data and returns an error because: "
    xml declaration not at start of external entity".
    I have tried using cfsetting with the attribute:
    enablecfoutputonly="yes", but still the result is the same.
    Any idea or lead in the right direction would be greatly
    appreciated.

    The XML that the DB returns, looks like this:
    <?xml version="1.0"?>
    <rowset>
    <row>
    <column_name>value</column_name>
    <column_name>value</column_name>
    </row>
    </rowset>
    After playing with code for a while now, I believe that the
    problem is not with the returned XML.
    The page that runs the SP is the page that call the SP. What
    means that the white-spaces are the code that the Coldfusion engine
    has already processed (although, the condition that checks whether
    the form variable that Ajax request, exist. Is the first thing on
    the page). to my understanding, the returned XML should be at the
    top of the page.
    I hope that I was clear enough.
    Thank you.

  • White Space After Form

    I have a Salesforce form embeded into two pages on my website.  Both pages have extra white space at the bottom and I can't decrease the height of the embedded HTML form in order to bring the footer up.  Both forms can be found here: http://www.beck-technology.com/form.html and http://www.beck-technology.com/student_form.html.
    Any ideas on how to decrease the white space?

    Hello,
    If you have removed the fields from the form, then you need to go to another state of the form and re-place the status message as well, to be able to shrink the form's frame. More details can be found here: http://forums.adobe.com/message/5240984#5240984
    Cheers
    Parikshit

  • Why is there extra white space after exporting to JPEG?

    After exporting an *.ai file to jpeg using  150 ppi and 5 for compression, I have extra white space below the artwork. This has happened in two files after exporting.

    Urthie,
    What about the Artboard, is that aligned to the Pixel Grid (it is if the size is a whole number of points/pixels and one corner is at X=Y=0 or another set of integer values, otherwise not)?
    Edit: Cross posting.
    Congratulations, some things are difficult to spot (and guess for others); your finding the solution is the best happy ending.

  • Usemap error - extra white space after image -solved: area shape must be inline

    When using image hotspots, if the &lt;area shape= "rect" is not IMMEDIATELY after the &lt;map name="Map"&gt;, then FF adds a white space (white horizontal line) after the image.
    White space shows between shop_top.jpg and shop_mid.jpg:
    <pre><nowiki><img src="images/shop_top.jpg" width="1022" height="259" border="0" usemap="#Map">
    <map name="Map"><area shape="rect" coords="251,147,435,252" href="http://www.example.html">
    <img src="images/shop_mid.jpg" width="1022" height="3250"></nowiki></pre>
    Images are touching vertically (no space in between):
    <pre><nowiki><img src="images/shop_top.jpg" width="1022" height="259" border="0" usemap="#Map"><map name="Map"><area shape="rect" coords="251,147,435,252" href="http://www.example.html">
    <img src="images/shop_mid.jpg" width="1022" height="3250"></nowiki></pre>

    Maybe Mozillazine's Web Devel / Standards Evangelism forums may help better.
    * http://forums.mozillazine.org/viewforum.php?f=25

  • Get-Recipient or Get-Mailbox and "white spaces" after import user to TXT files.

    Hi Guys,
    In this week I had small task to move mailboxes from old SBS to new Exchange user. I have done this task with small problems. I decided of course to use Powershell to make my life simple.
    Step 1.
    Get-Recipient | Select-Object name, Database | where database -Match "Mailbox Database" |  FT - Property name | Out-File -FilePath c:\ex_users.txt
    or
    Get-Mailbox  | select name, servername | where ServerName -match Server1 | select Name | Out-File -FilePath c:\ex_users.txt -Encoding UTF8
    Unfortunately I had to spent some time to clean output files. After export files I noticed that something is wrong with text format.
    How can I avoid "white spaces" ?                                                                                                      

    We always want to do our filtering as close to the left of a command as possible. Keeping this in mind, the first thing I looked for was to see if Get-Recipient had a filter parameter and it does.
    Get-Recipient -Filter {Database -eq 'CN=Mailbox Database,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=Organization,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=mydomin,DC=com'} | Select-Object -ExpandProperty Name | Out-File -FilePath 'C:\outfile-filter.txt'
    This seemed somewhat cumbersome because it required a lengthy DistinguishedName (DN). By the way, to get the DN of a database, use a modified version of this code.
    Get-MailboxDatabase -Identity databasename | Select-Object DistinguishedName
    I decided we would try filtering with the Where-Object cmdlet much like you did in your example. Noticed that I bumped it to the left so our filter ran prior to our select - something you should always do.
    Get-Recipient | Where-Object {$_.Database -match 'Mailbox Database'} | Select-Object -ExpandProperty Name | Out-File -FilePath 'C:\outfile-where.txt'
    Whichever way you do this, either the first or third code sample should help you write your data to a text file without the white space issue. I haven't looked at your second example but I suspect you could use some of this post to figure that one out yourself.
    Let us know and good luck.

  • Inserting white space after comma, full stop, etc...

    Hello,
    I have a text file. I want to add a blank space after all commas, full stops, exclamation marks and etc in that file.
    How can I do that?
    Edited by: user13223181 on Oct 5, 2010 2:55 AM

    suri_java wrote:
    you read the text file and append to buffer read and [program Example|http://www.roseindia.net/java/beginners/java-read-file-line-by-line.shtml] and change the file as per your requirement .
    I hope its helpful . Code examples on that site are largely flawed in the extreme. What's worse, they don't even respond to feedback or implement suggested improvements.
    db

  • White spaces after printing brochure

    I just printed a brochure that has a picture and a blue background.  When printed there are white spaces on top, botton and sides of the brochure.  Also, have a line across the top, front and back.  Same thing happened.  How can I fix this problem.  Please help.  Thanks.

    Hi vetar,
    Sounds like your printer is not an edge-to-edge printer (most office/home printers are not). They all have a margin on all sides, unless you have a photo printer which allows for "borderless" printing. Hope this helps...
    Cheers!
    -Mikey

  • Filling "Ignore White" holes after Live Trace/Expand

    I'm relatively new to Illustrator CS4's Live Trace feature but have been using it a lot lately. When I place a Photoshop image (shot on white background) using Live Trace with the "Ignore White" box selected, it does a nice job of knocking out the background. However, after I Expand the Trace to create a vector image, I am often left with see-through hot spots on the object itself. When I try to select a hot spot to fill it with white, I can't select it. Normally one would use the Group Selection tool to select a specific path but the "holes" can't be selected. The only thing I can think of is to place a white "patch" behind the the object. Any other simpler ideas out there? Thanks!

    First - before you can edit any LiveTrace object, you must expand the artwork (Object>Expand or Expand Apearance).
    The paths created in LiveTrace are compound paths. You'd have to release the compound paths (Object>Compound Path>Release). All paths will default to the fill color of the original. Select the paths you want to color and fill.
    You could avoid this by not ignoring the white when you trace. After expanding, use the direct selection tool (open or white arrow) to select the white background and delete. If you need some of the remaining white areas transparent, you may now select these and their surrounding elements and create compound paths.
    One other way, again after expansion of the artwork, would be to use the LivePaint tool. Select the artwork, choose the LivePaint tool, convert to LivePaint object (Object>LivePaint>Make), then fill as needed.

  • Extra White space after an inserted table

    Between a table I inserted into my document and the first line of text after my table I have almost a full page of blank space. There is no paragraph marker shown when I click "hide/show" and I cannot do anything with the document within the
    blank space. There is no page break that I can remove in the paragraph function with my cursor in front of that subsequent line of text. It is also not a style problem unless it has something to do with the table style. Please help. I'm using Microsoft
    Word 2013.

    Could you create a stripped-down copy of the document (without sensitive information) and make it available through one of the websites that let you upload and share a file, such as Microsoft OneDrive (https://onedrive.live.com),
    FileDropper (http://filedropper.com) or DropBox (http://www.dropbox.com). Make sure that you share the document (click Share, then Get a link), then post the link to the uploaded and
    shared file in a reply here.
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • UNWANTED EXTRA WHITE SPACE AFTER DETATCH OPERATION

    Hi,
    In our application, we have summary pages and each summary page is having various sections.
    These sections are implemented using PanelCollection component. In each of these sections we have "Detach" button.
    On click of the "Detach" button, the section gets expanded. Again if I click the "Detach" button, the section is being displayed in normal mode but the height of the section is increased.
    We are observing this behavior in Firefox and IE.
    For each section we specify the "autoHeightRows" to 10.
    I'm not sure what might be the issue. Any pointers would be helpful.
    Thanks
    Ravi
    Edited by: Ravi Nagubandi on May 13, 2011 12:02 AM

    Hi,
    if this reproduces in a test case, and if you can, please file a bug
    Frank

  • Pen tool: Resize image inside a layer/ stop pen outline / white space after crop

    I have 3 noob questions all related to the pen tool.
    1. Whenever I use the pen to outline something and drag the image to another psd file I see a grey pen outline around the image.
    ex. http://screencast.com/t/GmKWAr5UH
    2. Whenever I outline with the pen and then select inverse and then delete the background, the background becomes white. I want to drag my outline into my new file but without a white background. it should be transparent so it appears like a collage.
    ex. http://screencast.com/t/Rh4Uvq4xBM
    3. how do I select an image inside a layer to resize it. Nothing I do creates handles around the image isnide the layer.

    Theres some basic stuff you are not understanding…
    1. In Photoshop there is the pen tool for creating abstract vector edges, and selection tools (lasso, magic wand etc). You need to turn the results of the pen tool into a selection. Best way is using the the Command/return shortcut, or command clicking on the path in the paths panel.
    2 layers need to be , not - If you want to delete areas (make them transparent). To do this either go to Layer/New/Layer from background - or hold Option and double click the Background layer.
    3 See answer 2, and use Free Transform (command T)

Maybe you are looking for

  • ICal not indicating final day of event by a placing a dot in month view

    I consider this to be a bug: on my iPhone 5, in month view, when I input a multiple day event, there are dots everywhere indicating that something is occurring that day. However, the last day of a multiple-day event, no dot appers. For example: If I

  • Saving only PNG in Lightroom 4

    Hello, I finally have the plans on how I am going to manage my images, but I am curious why Lightroom saves both JPG and DNG after it imports them. My camera(Canon 7D) is configured to save both JPG and CR2.  When I import them, in the import window,

  • ICloud Status option doesn't display under View Options

    I've searched many threads and haven't found the answer to my question. The iCloud Status option does not display under my View Options (See pic). Any suggestions? Much appreciated.Thank you!! I have verified I am an iTunes Match subscriber. I have m

  • Problems seeing my swf file after it's loaded on my server

    Hello! I loaded a swf file in a dreamweaver cs3 and tested it on a browser and works fine. However, after I uploaded everything on my server.. I don't see the swf anymore.. I loaded the scripts AC_RunActiveContent.js.. Can't find the solution for thi

  • Remove/Delete a Computer-to-Computer network

    I have the same question. This problem has been brought up numerous times in discussion boards, yet it does not seem to have been answered. Is there a way to delete/remove a Computer-to-Computer network that I created? iMac G5   Mac OS X (10.4.6)