How do I add a new page dynamically base on the expendable text field?

Hi, All,
I've created a form with flow subform and expendable text fields. When the user fills out lengthy content, the form get cut off. Is there a way to dynamically add pages base on the content that user fills in the expendable text field?
Thanks,

May be you need check some things..
1) See if the form is saved as Dynamic PDF form.
2) The TextField should be set the "Expand to Fit" Check box checked in the Height property.
3) The subform that contains the TextField should set to Auto Fit for Height.
Thanks
Srini

Similar Messages

  • How do I add a new page to my website?

    So I've created my home page, and now I want to make a page
    that it will link to. I can't seem to find info on exactly how to
    do this. I've created the new page; do I now set site preferences
    for it? Do I define it as a "New Site?" If so, what do I put in the
    "Site Name" box i.e. do I name it with a full url? Also, what would
    I put in the "http address" box? Do I include the "
    http://www" part? Is there some other way to
    do it? Where do I save the file? In the root folder, or in a
    sub-folder in the root folder. If it goes in a sub-folder, do I
    have to stick in other items like my flash menu files? I'm sure
    there is an easy explanation here, but I've got 10 books on
    Dreamweaver, and none of them cover this. Maybe there is a url with
    a tutorial someone could point me towards? Thanks in
    advance.

    MaskedMan69 wrote:
    > So I've created my home page, and now I want to make a
    page that it will link
    > to. I can't seem to find info on exactly how to do this.
    I've created the new
    > page; do I now set site preferences for it? Do I define
    it as a "New Site?" If
    > so, what do I put in the "Site Name" box i.e. do I name
    it with a full url?
    > Also, what would I put in the "http address" box? Do I
    include the
    > "
    http://www" part? Is there some other way to
    do it? Where do I save the
    > file? In the root folder, or in a sub-folder in the root
    folder. If it goes
    > in a sub-folder, do I have to stick in other items like
    my flash menu files?
    > I'm sure there is an easy explanation here, but I've got
    10 books on
    > Dreamweaver, and none of them cover this. Maybe there is
    a url with a tutorial
    > someone could point me towards? Thanks in advance.
    Maybe you need to put Dreamweaver down and learn the basics
    of HTML first?
    If you have a site definition already created then just go to
    the File
    menu and select New.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • How do i add a new page to my already existing pages template document?

    help i'm really confused and in a hurry! I am working on something using a template, but it doesn't have enough pages, but i can't add a new one.

    whoops sorry figured it out thanks!

  • How can I add a new page without connecting it to the menu bar?

    Hello!  I would like to create a new page in the top level section. However, I do NOT want to link it through the menu bar widget... and instead, link it through a hyperlink or button from one of my main pages. I do not want this page to be a drop down from the menu bar either. Thank you in advance!!

    ^^^ with pic =).
    And then just link your object/text with the standard hyperlink menu!

  • How should I add a new physical network interface to the system?

    Hello:
    I am about to test my own NIC driver.
    I have used add_drv to add my driver.
    I have assigned an IP address to the sytem in the /etc/hosts file and corresponding network mask in the /etc/netmasks file, too.
    But when I tried to ping this IP address, it reported an error message saying"ICMP Host Unreachable from gateway localhost .....".
    I wonder if the system knows this physical network address.
    Does this have something to do with the /etc/hostname.* file?
    If this is the case, what should I name the "*" part of this file?
    Any advice will be appreciated.
    Steven

    Hello Shridhar:
    Thanks for your kindly reply.
    I just noticed that the system would try to plumb the interface during the booting process but failed with a error saying "ifconfig:plumb:XXXX:Bad file number", where XXXX is the * part of /etc/hostname.*
    Does not mean I have assigned a illegal interface name to this interface?
    It seems that man page doesn't contain any information about error messages.
    I use the form XXX0, where XXX is the name of the NIC driver.
    Any advice will be appreciated.
    Steven
    You should plumb the interface and bring it up with
    the ifconfig command. Do a man on ifconfig for more
    details. What was the add_drv command used ? Based on
    your driver's name, you can setup the hostname.*
    file's name to automatically setup and initialize the
    NIC inetrface everytime the system boots up.
    HTH
    shridhar

  • How do I add a XAML page to a Universal App?

    I created a new Blank App. Everything works as it should. Now I want to add a new page. This is the wrong way I'm doing it:
    First, I add a new Blank Page to the Windows Project
    foo.xml.cs
    namespace testapp
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class foo : Page
    public foo()
    this.InitializeComponent();
    Then I add the same class name to the Shared project
    foo.cs
    namespace ZUMOAPPNAME
    class foo
    I modify foo.cs to
    namespace testapp
    public sealed partial class foo
    public void shared()
    win();
    And then add a method to foo.xaml.cs to make it
    namespace testapp
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class foo : Page
    public foo()
    this.InitializeComponent();
    public void win()
    shared();
    The win method can call the shared method.
    However, for the shared method, the compiler gives me this error:
    The name 'win' does not exist in the current context
    What's the proper way to add a new page?

    Hi Greg,
    Take a look at my blog entry
    Strategies for sharing code in XAML-based Universal apps
    As Magnus notes, all parts of a partial class need to be in the same namespace to be part of the same class. ZUMOAPPNAME.foo and testapp.foo are unrelated classes.
    It's not clear exactly what you're trying to do here, but a common pattern is to have different Xaml for the Windows and WindowsPhone projects but to share data. A good way to do that is to create the new page with the same name (for example: "foo")
    in both the Windows and WindowsPhone projects. This will add a foo.xaml and foo.xaml.cs file in each and will define the foo class in both foo.xaml.cs files.
    You can then add a foo.cs file in the shared project with your shared functions:
    Shared/Foo.cs:
    namespace testapp
    public sealed partial class foo
    public void shared()
    do_shared_stuff();
    do_plat_specific_stuff();
    And call it from the platform specific functions:
    Windows\foo.xaml.cs:
    namespace testapp
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class foo : Page
    public foo()
    this.InitializeComponent();
    shared();
    public void do_platform_specific_stuff()
    // do windows stuff
    You can use this to mix and match as much as you'd like. If you have very straigtforward UI you may be able to copy the entire .Xaml and .Xaml.cs into the shared directory or you may have platform specific Xaml but share the Xaml.cs file. In most cases you'll
    have a mix of platform specific xaml and code and shared code.

  • With firefox, how do I bookmark a new page into folder contained in From Internet Explorer?

    i imported IE favorites into firefox bookmarks. my IE favorites contained many folders with different categoties of information......eg., folders for car repair, investments,etc. now that i am using firefox, how do i
    bookmark a new page into one of the existing IE favorite folders? I have tried every option I could think of using the options shown when i click bookmark this page.......i am getting as far as FROM INTERNET EXPLORER, but i can't seem to find a way to reach one of the sub-folders within the FROM INTERNET EXPLORER folder? also, nothing is happening when i click on the star symbol to the right of the address space?

    thanks for the suggestion....sounds good to Old Goofy! Before your response was received, I continued to fiddle with the popup box that appears when you click the "bookmark this page". in my fiddling, i noticed that at least once, a litlle small solid triangle appeared just before From IE....I clicked on that little triangle and voila, there were all my sub-folders under the main IE folder!!! Nowhere in all the old posted Firefox support had I seen I clear illustration of doing this......probably I missed it or I'm just a dumbie?
    Meanwhile, if anyone is having all kinds of strange problems with computer, and no browsers including IE, with the exception of Firefox, are working properly, if you have Norton Security on your computer and it al;so is not working properly, UNINSTALL NORTON!!!!!!!!!!! That was my situation, to the extent HP free support was going to help me wipe the drive and try to put the computer back "as new", but using a different security program!!!!!

  • How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    Si vous avez utilisé la commande Save As Template depuis Pages, il y a forcément un dossier
    iWork > Pages
    contenant Templates > My Templates
    comme il y a un dossier
    iWork > Numbers
    contenant Templates > My Templates
    Depuis le Finder, tapez cmd + f
    puis configurez la recherche comme sur cette recopie d'écran.
    puis lancez la recherche.
    Ainsi, vous allez trouver vos modèles personnalisés dans leur dossier.
    Chez moi, il y en a une kyrielle en dehors des dossiers standards parce que je renomme wxcvb.template quasiment tous mes documents Pages et wxcvb.nmbtemplate à peu près tous mes documents Numbers.
    Ainsi, quand je travaille sur un document, je ne suis pas ralenti par Autosave.
    Désolé mais je ne répondrai plus avant demain.
    Pour moi il est temps de dormir.
    Yvan KOENIG (VALLAURIS, France)  mercredi 23 janvier 2011 22:39:28
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • How to add a new page to a streaming portal?

    I want to add a new page to a streaming portal.
    I add a new page to the .portal file on my desktop development
    environment.
    I do a build, creating a new ear with an updated .portal file on it.
    I deploy that ear, but I do not see the page in the library.
    I found that if I create a new Desktop, based off the .portal file, the
    page is added to the library (as well as every other desktop).
    Is this the right way to do things? Or do I have to add the page using
    the admin tool? If I do, I don't have access to all the properties.

    Once you create desktop from a template (.portal) file built in workshop, all the elements of the portal template file get stored in database as library resources. Later when you add new pages to the .portal file, you wont see those changes in the streaming mode desktop. As far as I know, BEA is trying to fix this issue in future releases. But in the meanwhile, you have to create a new .portal file in workshop and create desktop out of it from admin portal to see the new changes.
    Seenu.

  • Elements 11 vs 13: how can I add a new place tag to my PSE13 database without using the wretched and totally inadequate map technology  that Elements 13 wants to impose.

    HI,
    I have recently installed Elements 13 having used Elements 11.0 successfully to build a database of 30,000 plus images indexed by place, people, and photo date. Elements 11 allowed me to add new places which are meaningful to me but which are a complete mystery to the mapping technology of Elements 13. For example some years ago I lived in London in a road called Argyle Road. In elements 11 I could enter the place tag as Argyle Road. In Elements 13 I am required to locate Argyle Road on the map, but the map presupposes that the Argyle Road I am referring to is in Ealing in West London. It is not!
      I now live in a place called Broadsands but the Elements 13 Map places this 0.5 miles away from what I would describe as Broadsands.
      So the question: how can I add a new place tag to my database without using the wretched and totally inadequate map technology  that Elements 13 wants to impose.

    Thank you for your quick response, BalusC. I really appreciate your answer.
    Yes, you are right. If I manually code the same amount of those components in the JSF pages instead of generating them dynamically, the server will still run out of memory. That is to say, JSF pages might not accommodate a great deal of concurrent visiting. If I upgrade the server to just allow 1,000 teachers making their own test papers at the same time, but when over 2,000 students take the same questionnaire simultaneously, the server will need another upgrading. So I have to do what you have told me, using JS+DOM instead of upgrading the server endlessly.
    Best Regards, Ailsa

  • How do i add a second page to a document in Pages 5.2.2

    How do I add a second page to a document in Pages 5.2?

    Hello jeddi17,
    You can insert a page break with the Insert (menu) > Page Break.
    Note if your typing overflows the first page, then a new page is automatically created.
    Pages for Mac 5.0: Change the flow of text
    http://support.apple.com/kb/PH15334
    Force text to the next line or page
    A line break, also called a soft return, starts a new line without starting a new paragraph. A page break moves the next line of text to the top of the next page.
    Click where you want the break to occur.
    Do one of the following:
    For a line break: Press Shift-Return. 
    For a page break: Click Insert in the toolbar, then choose Page Break.                                
    Take care,
    Nubz

  • How do you add a new icon to the home screen?

    How do you add a new icon to the home screen?

    The only new icons you can add to your home screen are webclips, which can be added by using the "+" button in safari on the desired web page.
    You won't be able to add new apps until February when the SDK is fully seeded to developers.

  • How can I add a new message(custom text message) to the holiday approval em

    How can I add a new message(custom text message) to the holiday approval email-notification sent to the manager?
    TIA

    The answer is 'not very easily', unless the information you want to display is the employee's leave balances. In 12.1.3 Oracle have delivered functionality that allows you to include the leave balances in the approval notifications out-the-box, ie, without customization.
    For any other information you're probably going to have to customize the standard delivered HRSSA workflow. Within this workflow, the Leave of Absence functionality uses the Notify Approver (Embedded) (HR_APPROVER_NTF) notification. The body of this notification is set to the Notify Approver (Embedded) (HR_NTF_EMBEDDED_REGION) attribute. This in turn defaults to:
    JSP:/OA_HTML/OA.jsp?OAFunc=-&HR_EMBEDDED_REGION-&NtfId=-&#NID-
    So essentially you can change the HR_APPROVER_NTF notification. The problem with changing this notification is that it's generic - it's used for all SSHR functions and not just Leave of Absence. That means you have to make other, more substantial, customizations to the workflow to ensure the changes you make only applies to LOA.
    The other option is to personalize the review page (ie, the region referenced in &HR_EMBEDDED_REGION) to include whatever messages you want. But that means they'll appear on the Review page and all LOA approval notifications and that might not be what you want.
    It's usually better to live with what Oracle deliver and find an alternative solution! What's the content of the message you want to include?

  • How can i add a new device

    how can i add a new device to Itunes

    Not sure what your post's title means, but you can only add a device to your iCloud account directly on the device e.g. log into the account in Settings > iCloud
    If your iPad isn't showing in your computer's iTunes when you connect it to your computer then is your iTunes up-to-date ? There is also some troubleshooting for a device not showing on these pages :
    PC : iPhone, iPad, or iPod touch not recognized in iTunes for Windows
    Mac : iOS: Device not recognized in iTunes for OS X - Apple Support

  • How do I add a new credit card to my account

    How do I add a new credit card to my account?

    If you are doing it on your iPad then try tapping on your id in Settings > iTunes & App Stores and select 'View Apple ID' on the popup and log into your account, and on your account's page there should be a payments link.
    On your computer's iTunes you should be able to do it by going into the Store > View Account menu option and logging into your account, and on your account's details page there should also be a payment link.

Maybe you are looking for