Hidden Pages

I have a 15 page form that is broken into 4 sections. I also have 4 buttons for navigation to those sections. These buttons are located on the top of the Master pages. The problem I am having is that when I set the presence of one sections pages to hidden, the pages still show up but with only the navigation fields on top. I have also tried to put the navigation directly on the pages but still get blank pages showing up (4 pages with content and 11 blank pages). How do I set the presence of the pages so that it will only display the visible ones? Here is my code.
xfa.form.form1.pPg1.presence = "visible";
xfa.form.form1.pPg2.presence = "visible";
xfa.form.form1.pPg3.presence = "visible";
xfa.form.form1.pPg4.presence = "visible";
xfa.form.form1.pPg5.presence = "visible";
xfa.form.form1.fPg1.presence = "hidden";
xfa.form.form1.fPg2.presence = "hidden";
xfa.form.form1.fPg3.presence = "hidden";
xfa.form.form1.oPg1.presence = "hidden";
xfa.form.form1.oPg2.presence = "hidden";
xfa.form.form1.oPg3.presence = "hidden";
xfa.form.form1.oPg4.presence = "hidden";
xfa.form.form1.oPg5.presence = "hidden";
xfa.form.form1.sPg1.presence = "hidden";
xfa.form.form1.sPg2.presence = "hidden";

Hi,
Use the instanceManager to remove / hide pages:
form1.page_2.occur.min = "0";
form1.page_2.instanceManager.removeInstance(0);
Replace
form1.page_2 with the somExpression to match the page to hide.
Instead of
form1.page_2.instanceManager
you can also use
form1._page_2
But I don't like it because variables beginning with an underscore imply being global variables. Which they apparantly aren't in this special case.
Regards,
Steve

Similar Messages

  • There are hidden pages in the PDF form I have.  How can I see and print all without clicking on the

    I have hidden pages in the PDF form I'm using (but didn't create).  How can I see and print all the pages at once without clicking on the "next page" button.  In the initial view, there are four pages, but if I click the "next page" button, there are a total of 12 pages in this document.  This is three budget years, each year being 4 pages long.

    You're most likely dealing with a dynamic XFA form created in LiveCycle Designer. You can open it, click the button, and save it, and it will most likely be 12 pages when next opened, but it depends on how the form is set up. The ability to make edits to an XFA form in Acrobat is very limited, especially for dynamic forms, so things like flattening aren't possible.
    If it's not an XFA form, you'd still need to click the button at least once and save. To say for sure what's possible, I'd need to see the document. Can you post it somewhere?

  • How To Use a Hidden Page Item within an SQL Report Query without Submitting

    Hi,
    Using: Oracle ApEx 3.0.1
    I have an sql report region that contains a hidden page item as part of the "where clause". My problem is, based on a value entered by the user, I need to assign this value enetered to my hidden item, so that it can be used within the where condition of my sql but this would need to be done without actually submitting the form.
    At the moment, I can set the value via an on-demand process but my SQL is still not returing any values as the hidden page item within the query is not set (as page has not been submitted).
    Can anybody please assist as I am not sure how to do this and whether in actual fact, this is possible to do, without having submitted the page.
    Thanks.
    Tony.
    Edited by: Tony F. on Nov 12, 2011 1:39 AM

    You can set a session value using a dummy ajax call e.g:
    Add the following to the 'Function and Global Variable Declaration' region
    function f_set_item(pThis){
      var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=dummy',1);
      get.add('P1_ID',pThis.value)
      gReturn = get.get();
      get = null;
    }Where P1_ID is the session value to be set. Then call the function in the usual way e.g.
    javascript:f_set_item(this);
    I hope that helps
    Shunt

  • Which E series routers support the Wireless_Advanced.asp hidden page?

    I know the E2500 and the E4200 support the http://192.168.1.1/Wireless_Advanced.asp settings but what other E series routers support this hidden page where you can set Beacon Interval, RTS and Fragmentation thresholds?

    I own the E3000 v1 and it has this feature so I presume that the E1000 & E2000 have this feature. You say that E2500 & the E4200 have the feature.  I presume that the E1200 v1 to E4200 v1 have the feature while E1200 v2 to E4200 do not have the feature. See new userguide for E1200 to E4200.
    Greetings from Northern Ontario, Canada

  • Hidden page PDF file

    Hello, I have a pdf file in which I can read almost every page, but in some of them appears a blank page with the next text "Hidden page". With the Adobe Acrobat Pro tools I could search for hidden information and there is hidden text in those "Hidden page". My question is: ¿How can I turn hidden pages into normal pages, so I can read the text that is there?

    Hey kurtemi,
    Was the PDF created by you or someone else?
    Also, share the file comprising of some hidden text, if possible.
    Regards,
    Anubha

  • System is considering the HIDDEN pages as well for all the validations!!

    Hello
    I have a 4 pages interactive form and a i hv a 3 business scenarios, where in
    1) 1st business scenario: All the 4 pages will be launched on the browser
    2) 2nd business scenario: the 2nd and 3rd page will be hidden
    3) 3rd business scenario: the 1st and 3rd page will be hidden
    As soon as user logs into the intranet, user has to select a business scenario, so that, i am passing it(the selected bussness scenario) to form's JavaScript and am wrote the below code
    Here BIZ = bussness scenario
    if (BIZ = "2") {
    form.page2.presence = "hidden"
    form.page3.presence = "hidden"
    Here i am giving just a code snippet (currently our system is down, it will up in next 90 min. and i am newbie to JS)
    This is working fine.
    But, when user SUBMITs the form, the system is doing all the validations for the hidden pages as well!! the validations includes,
    - Mandatory field is populated or not
    - is drop-down field has any unknown value or is it populated or not at all
    Actually, my idea/impression is that.....when i am hiding the pages, then, the system, should not consider them at all, system should ignore the hidden pages in all aspects/validations
    Pls. let me know How can i achieve my requirement?
    Thank you

    Hi,
    Instead of showing hiding the pages, set them to repeatable in the Object > Binding palette, with the Min count unticked.
    if (BIZ == "2") {
    form._page1.setInstances(1);
    form._page2.setInstances(0);
    form._page3.setInstances(0);
    else if (BIZ == "3") {
    form._page1.setInstances(0);
    form._page2.setInstances(1);
    form._page3.setInstances(0);
    This way the validations wont be undertaken in pages that are not present.
    Niall

  • [JS][CS4] Remove all hidden page items?

    Hello,
    I'm trying to remove all hidden page items regardless of how many sublayers they are burried in. Is this possible? I wrote a snippet here that seems to only partly work. It removes all hidden page items unless two hidden items exist right after each other in the stacking order. Why would this be happening? Any suggestions?
    for (i=0; i<doc.pageItems.length; i++){
              if (doc.pageItems[i].hidden == true){
                   doc.pageItems[i].remove();
    I'm new to scripting so any help is greatly appreciated.
    Thanks!
    Lindsay

    What happens if you go from back to front? I think something like this
    #target illustrator
    var idoc = app.activeDocument;
    for (i = idoc.pageItems.length-1; i>=0; i--){
              if (idoc.pageItems[i].hidden == true){
                   idoc.pageItems[i].remove();
    Worked on a trial

  • Boolean Controls on a Hidden Page in a Tab Control

    Hello everyone. 
    I am having some issues with a tab control in a fairly complex program put together by another (more experienced) developer. The basic setup for this tab control features several tabs to control various aspects of a system (motor setup, video setup, general parameters, etc.). Going to a specific tab and pressing Ctrl-F8 brings up a password prompt, which then displays the "Advanced" menu. The advanced menu is a hidden page within the same tab control. The advanced menu contains several Boolean controls that allow access to the various advanced setup features (these pages are also hidden pages on the same tab control), however, none of the Boolean controls are functioning. Clicking on the controls does not cause the buttons to appear pressed, either when running the program as a compiled executable, or while on the front panel of the VI in LabView. The hidden pages also appear as dark grey. I have confirmed that the same is true for all of the hidden pages within the tab control. I believe that my issue is with the version of LabView that I am using. The program was designed in 8.0, whereas I am currently using 8.2. I have not been able to find any references to such an issue between the versions, and I am somewhat at a loss as to how to correct it. Version 8.2 is the only version I currently have access to, otherwise I would use version 8.0, to see if that corrects the issue.  Programs that were compiled previously by the original designer do function properly (hidden pages, when displayed, still appear dark grey), but even compiling the unmodified source code results in the same problems for me. 
    Any help that you could offer would be greatly appreciated. P.S. I would be addressing these problems with the original designer, but he is currently on vacation for a month and I wish to get this resolved.  
    Solved!
    Go to Solution.

    jack47 wrote:
    If a page in a tab control is hidden it will appear 'dark grey', and all of the controls on that page will behave as if they are disabled.  If you 'right-click' on the page name, and select 'Advanded->Show page' it will turn light grey.  Now you should be able to change the controls when the VI is not running.  If the page is shown during operation and the controls still do not function they are probably disabled.  You can check by 'right-clicking' on the control and going to 'Advanced -> Enabled State'.  Also it is possible that they are disabled programatically using a property node.
    I am leaning towards this as the issue, at the moment. I just find it very odd that the controls work in the 8.0 compiled program, but not my 8.2 compiled version.
    I will have to show/hide each page when it is accessed/left.

  • Printing Duplex Pages, Single Page, Hidden Page Question

    I have an 8 page form where there are several forms in the following format
    Page 1 - Single Sided
    Page 2 and 3 - Double Sided
    Page 4 - Single Sided
    Page 5 and 6 - Souble Sided
    Page 7 and 8 - Double Sided
    What I would like to do is have those blank pages in the form hidden from the staff but to make them available for printing since we use our copy machines as printers and they print on both sides of the paper.
    I'm attaching the form so anyone can see what I'm talking about.
    https://acrobat.com/#d=PI8bPrHtrPOXCPq41zlttw
    Any help is appreciated

    It's probably on their Printer setup. Sometimes if you set print for duplex then another Operator comes in and uses the same printer and assumes it's simplex printing it can print duplex or whatever the previous print setting was used.

  • Button to show a hidden page?

    Hello,
    I have been trying to figure this out, but have no had much luck with everything I have found through online and searching.  I have created a form, from scratch in Adobe Livecycle, that has three pages.  I would like the second page to be hidden unless the user presses a button to show the page.  Currently I am able to figure this out with a check box, but I would like a button, but when it comes to the Javascript to do this, I am completely lost.  I would also like a button on the second page to close the page if it was accidentially pressed.
    If there are any questions, please let me know.
    Thanks in advance.
    Justin

    Hi Justin,
    There are several ways of making a page hidden/visible.
    1. Select the page in the hierarchy palette. Then In the object palette in the Presence DropDown you can select "invisible".
    2. You can also set the forms' presence in the initialize event of the page by writing this.presence = "invisible".
    3. If you want the button to do the trick you can place the JavaScript in the click event of the button.  Page.presence = "hidden" or Page1.presence = "visible" depending upon the choice.
    Thanks,
    Bibhu.

  • Open hidden page in Design View

    I have hidden a page in my form and I need to edit
    it but cannot access the page in the Design View.
    What is the best way to make the page visible for editing?
         Thanks n

    Highlight the page in the Hierarchy view then on the object palette change the presence to visible ....then you will be able to edit it.
    Paul

  • Javascript reading a protected / hidden page item / application item

    Hi
    I'm trying to use javascript to validate / calculate the value of a page item.
    For this I need to access an item that is it protected (not simply a text field which is editable) - or one which is currently hidden.
    Is it possible for javascript to read the value of an application item or a page item that is hidden or a page item that is protected (not editable)?
    Thanks in advance.
    Mike

    Mike, when you change the item type you are changing the html element type
    from
    <input type="text" id="P1_ONE" value="This is P1_ONE item type value" />
    to something like
    <td>This is P1_ONE item type value</td>
    for the text type you would use .value so $('P1_ONE').value or document.getElementById('P1_ONE'). value but for the "display as text" would be $('P1_ONE').innerHTML or document.getElementById('P1_ONE').innerHTML.
    been a while since i use APEX js systax as I've been using jquery but the second example of each type will work.

  • Hidden Page wont come up

    I made an additional page in iWeb that I have hidden, in other words in not listed in the main Welcome html. I can't seem to access it when I go to my website. It should come up even if I hide it. Could someone help me out. Thanks. Kurt

    No, I purposely didn't list it in the Navigation menu because it's a page that I want my customers to get to after they have purchased a video. But I should still be able to find the url for it myself. The website is: www.learningtheabcs.com but the page I have hidden for customers to be able to download the full video is: www.learningtheabcs.com/Movie_Download. I created this page in iWeb and hid it from the navigation.

  • Address in hidden pages

    Hello, I recently created a business homepage in iweb and everything is fine. But my father asked me to upload some family pictures for them and the whole family to see.
    I made a family album exclusively for them, but I did´t wanted it to appear in the navigation menu, so I uploaded and thought that I could search for the album by typing manually in the address box, but I just could´t found it. I checked in the folders in my cyberduck and it´s there, can anyone help me please to find the address. I´m sure the folder is inside the main homepage folder.
    Thanks

    Hi Lorena,
    if it's a photopage...
    yourbaseurl.com/Sitename/Pagename.html
    or
    yourbaseurl.com/Pagename.html
    if it's a My Albums page
    yourbaseurl.com/sitename/Pagename/Pagename.html (Pagename of the album page not photopage)
    or
    yourbaseurl.com/Pagename/Pagename.html (Pagename of the album page not photopage)
    Note that the address is case sensitive if you write capital letters small it will not work.
    Regards,
    Cédric

  • Linking 'Hidden' pages

    I have a business website piperdogdesign.com.au. I now want
    to make another website within that website. Basically I want to
    place my own website showing I am a graphic designer into the
    Piperdog website, but I don't want it to be a link on the piperdog
    home page. I want to be able to tell someone that they can view my
    graphic design work by going to piperdogdesign.com.au/michelle. How
    do I upload my 'michelle' page? Do all html pages have to be linked
    from the main index page? I don't want to spend the money to go buy
    a new domain name etc and want to be able to utilise the piperdog
    site and just tell certain people they can view my work on a
    certain page. I hope I am making sense here.

    piperdogdesign.com.au/Michelle
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "PiperdogDesign" <[email protected]> wrote
    in message
    news:genv34$isj$[email protected]..
    >I don't get what I am doing wrong, it's still not
    working. My MIchelle
    >folder
    > is placed inside my piperdog folder right (I don't know
    where else I could
    > place it). I uploaded the Michelle folder to the remote
    site and in that
    > Michelle folder I have my swf file (that makes up my
    page) and index.html.
    > When I go to type in piperdogdesign.com.au/michelle it
    says 404 not found.
    >

Maybe you are looking for

  • 'The mobile phone rejected the operation' Error - ...

    Hi, Using E70 via Bluetooth. Everything works for sync etc. When I click on contacts, it gives me the error 'The mobile phone rejected the operation' and does not allow me to view my contacts. On occasions it will show the contacts, then something 'h

  • Need urgent help with CS4 button-to-animation functionality

    Problem: I´m making a site who presenting about 11 «puppets» for a ventriloquist. They are placed across a stage, and will pop up and glow when the mouse goes over. when you mouse-click on the puppets, it should trigger a animation who blows up and m

  • ADF Create Form - will compensate

    I figured in as much as I am willing to learn and transition to ADF, I am not going to waste any more time on this create form. I am not sure if this is the right forum for this, but I am willing to compensate somebody who's willing to develop someth

  • I have a MacBook Pro OS X 10.6.8.  I think it's Leopard - how do I find out for sure?

    I have a MacBook Pro OS X 10.6.8 operating system.  I think it's Leopard but the support on Apple seems to show it as Snow Leopard.  How can I determine what it is.  I am considering updating to Snow Lion so I can use iCloud on this to link with my i

  • Form Layout Language

    Hello , i am facing the problem below, i create a form with english language and now i want to create the same in german. I copy the english form but when i login with german language i can see an empty layout. how i can have the layout also when i a