How to hide a page complete with a condition

Hello

What I'm trying to do, is to hide a page based on a condition. The State is in the initialize event of my Table. I tried many things, I tried to just write in the initialize event of my Table: data.page.presence = 'hidden', but it does not work. Even worse, it seems to do that the rest of the script is ignored.

Someone tried to hide a page, even if there is still some information about this?

Thank you!!

Max

OMG I made the worst mistake, I apologize to the community... The correct syntax should be:

Data.Page1.Presence = 'hidden' instead of 'hidden '.

Tags: Adobe LiveCycle

Similar Questions

  • How to hide a page and its tab to users?

    Hello

    I have a created a user with the following information.
    Username: has
    Address e-mail: [email protected]
    Developer privileges
    Default Schema: S
    The user is a developer: No.
    The user is an administrator of the workspace: No.
    Control of accounts
    Consider the availability: unlocked
    Change password on first use: No.

    I set the permission scheme: 'administrator access - control' for the page and its tab.
    But the page and its tab appear not only for me (admin), but also to the user.
    How to hide the page and its tab to users?

    Thank you
    Guy
    -----
    H5. FYI, I am very new to SQL, PL/SQL, and APEX. Would appreciate much more explanation and full path (for example. Shared components > change the security attributes > VPD)

    Guy,

    The user is an administrator of the workspace: No.

    These authorisation schemes created by the access control wizard do not use status of developer/workspace user accounts. Must add user names in the apex_access_control table and assign the desired privilege to every user.

    Scott

  • How to check the page dirty with default values existing in viewObject?

    Hi all

    I use JDeveloper 11.1.1.4.

    I have two pages in my application. I am browsing for page2 page1.

    Before opening page 2 I created new line page 2 notice of object using method 'Create Insert()' with some default values by using the ViewRowImpl class.

    My problem is that I have a button to return to Page 2. If I click the back button, then check the Application module is dirty or not.

    But it always shows AM is dirty due to I'm setting some default values in ViewRowImpl. If I avoid the default values in ViewRowImpl then AM dirty check works fine.

    My Question is how to check the AM (or) dirty Page with default values in the object view?

    My bean Codes:

    Links DCBindingContainer = (DCBindingContainer) BindingContext.getCurrent () .getCurrentBindingsEntry ();

    DataControl dc = bindings.findDataControl("AppModuleDataControl");

    ApplicationModuleImpl am = ((ApplicationModuleImpl) dc.getDataProvider ());

    If (am.getDBTransaction (.isDirty (()))

    {

    return "Page is dirty."

    }

    My Jspx Codes:

    < af:commandLink id = "cl6" text = '2 '.
    shortDesc = "Add Row in Page2"
    actionListener = "#{bindings." Action CreateInsert.execute}' = 'Edit' >

    Thank you

    David...

    see this

    http://www.techartifact.com/blogs/2013/11/how-to-check-ifdirty-is-modified-for-view-object.html

    http://www.jobinesh.com/2011/05/checking-for-dirty-data.html

  • When you view a spread, how to hide the page divider

    When you view a double page, how hide you the separator page? See attached screenshot.

    InDesign.jpg

    Do so in a separate one-page file and place it in the final release when finished.

    Bob

  • How to set what pages opens with button tab

    I wish to have my home page opens when I click on the NEW TAB (+) button?
    Instead of a blank page!

    You can do this by using an add-on such as:

  • How to hide the pen line with that I made a text track?

    Hello

    I traced a line with the pen and then curved in a ' shape, to make a text track.  My text is now sitting in a ' form but when I do the line below it 100% transparent text goes too transparent.

    Thank you very much

    Sophie

    No need to make it transparent,

    Select the path of the form "S" with the white arrow tool and then change the line to '0' in the outline Panel.

  • How to hide and reveal content under certain conditions?

    With the help of Acrobat X Pro.

    I have a load of text on a form I want to obfuscate in certain circumstances and to reveal to others.

    I tried to use a text box and put a script in the custom format field to switch between white and transparent fill colors, but it does not work reliably.

    In the meantime, I have a hack with a gazillion overlapping of checkboxes... but there must be a better way.  I can't change the underlying text for various reasons.

    Thanks in advance for any help.

    You can use several read-only buttons that all have the same name and can show/hide them all with a single statement by controlling their visibility:

    getField("cover").display = bYourVar? Display.visible: display.hidden;

    Where the "cover" is the name of the buttons and the bYourVar is a variable which is true when you want that text to be hidden and false when you want to the text to display.

    You can show/hide text by placing it on a separate layer (BCG) and control the visibility of the layer via JavaScript, but setting this up is not possible in this case, given your current constraints on editing.

  • How to use variables in conjunction with a conditional statement

    v_sql:=  'SELECT  /* * */ trans_id' || 
                'FROM            NDW_trans '||
                'WHERE           cable =TRIM(LEADING 0 FROM ' ||  i_Cab     || ')' || 
                                'AND ' ||  i_Pair  || 'BETWEEN low and highr' ||
                                'AND termsysid =' ||  i_termsysid ||
                                'AND provisionstatus= ' ||  3 /* find what the constant is for inservice*/ ;
                                
         IF     i_Bill IS NOT NULL THEN
                v_sql := v_sql || 'AND CO_Clli = i_Bill';
         END IF;                  
          BEGIN                  
               EXECUTE IMMEDIATE v_sql INTO o_trans_id_list; 
    How can I convert this to binding of variables that I also have a conditional statement which stretches from the place where clause

    Try this

    v_sql:=  'SELECT  /* * */ trans_id
                FROM            NDW_trans
                WHERE           cable =TRIM(LEADING 0 FROM :i_Cab
                                AND  :i_Pair BETWEEN low and highr
                                AND termsysid = :i_termsysid
                                AND provisionstatus=3 '  /* find what the constant is for inservice*/ ;
    
         IF     i_Bill IS NOT NULL THEN
                v_sql := v_sql || 'AND CO_Clli = :i_Bill';
         END IF;
          BEGIN
               EXECUTE IMMEDIATE v_sql INTO o_trans_id_list
               USING i_Cab, i_Pair, i_termsysid, i_Bill ;
    

    HTH
    SS

  • Hide/show pages

    I created a page of 5 forms using buttons to navigate to different pages. When the form is opened, you can navigate using the buttons, however, you can also scroll down and see the other pages how to hide these pages? The code I'm ising is the following:

    / which calls the function to hide all pages

    pageNav.hidePages ();

    This shows the target page again

    Page1.presence = "visible";

    Form1.Page1.navButtons.Button2::click - (JavaScript, client)

    that calls the function to hide all pages

    pageNav.hidePages ();

    This shows the target page again

    Page2.presence = "visible";

    Form1.Page1.navButtons.Button3::click - (JavaScript, client)

    that calls the function to hide all pages

    pageNav.hidePages ();

    This shows the target page again

    page3. Presence = "visible";

    Form1.Page1.navButtons.Button4::click - (JavaScript, client)

    that calls the function to hide all pages

    pageNav.hidePages ();

    This shows the target page again

    page4. Presence = "visible";

    Form1.Page1.navButtons.button5::click - (JavaScript, client)

    that calls the function to hide all pages

    pageNav.hidePages ();

    This shows the target page again

    page5. Presence = "visible";

    I thought about it, since I was still working on some pages that I had not changed and "hidden (exclude the layout). Thank you.

  • How to use the Page number in the IF condition

    Hello

    I have an obligation to change the output based on Page numbers. Can you please help me how to use the Page number in IF condition.

    Thank you

    Can u send me a sample xml and RTF file to my email in my profile identification, so that I can have a look.

  • I try to print 4 x 6 photos.  How to print borderless on LR5 with my HP OfficeJet 7410?  Even in print in LR5 mode, my photographs show a border.  Setup page displays "without borders".  Image settings show "zoom to fill". But cannot print, or same prelif

    I try to print 4 x 6 photos.  How to print borderless on LR5 with my HP OfficeJet 7410?  Even in print in LR5 mode, my photographs show a border.  Setup page displays "without borders".  Image settings show "zoom to fill". But cannot print, or even listen to excerpts, without borders.

    What is your size of cell on in the print module? Cell size sliders must be completely to the right, and the margins should be set to 0.

  • With adobe export how to convert PPT to pdf with notes pages it only makes the slides

    With adobe export how to convert PPT to pdf with notes pages it only makes the slides

    Hi Robert,.

    We understand your problem, but with the subscription online, we can only convert the slides in PDF format. Speaker's notes would not get converted to PDF.

    If you want to convert the speaker notes with slides, then you need to buy the complete PDF solution: Adobe Acrobat

    Hope that answers your question. I would like to know if you have any other questions.

    Kind regards

    ~ Dominique

  • How to hide temporarily inactive titles in Page view?

    How to hide a track layout once its regions have finished playing? In the screenshot below, the cursor is at 92 bar, and you can see in the window Arrange regions 'Nina' and 'Daddy' are finished playing. But they are still displayed in Page view. How to hide the display Page once they are done? In Logic 9 disappear automatically...

    several ways to do this... one way is to cut the section is based in the arrange window and use them gaps to show this gap as remnants or hide personnel. You can use regions muted in exactly the same way, if you choose...

    Below shows the two staves to measure 13...  They were cut out of the arrange window and I can have them appear in the staff or not based on the box fill up the gaps.

  • How can I get the 'secure site' (padlock) icon to display when you access a web page secured with Firefox 4?

    The "secure" (lock) icon no longer appears on the status bar (or anywhere else I can find) when you go to a secure web page. How can I get the 'secure site' (padlock) icon to display when you access a web page secured with Firefox 4?

    You can add a 'lock' the b-I-S with this extension.

    https://addons.Mozilla.org/en-us/Firefox/addon/padlock-icon/

  • How to hide the sidebar with other files of Notes?

    OS X El Capitan (10.11.3)

    I am trying to read a PDF Acrobat Pro and take notes with Notes in my mac, side by side.

    I would like to know how to hide the sidebar on the left of Notes, where are the names of the other file.

    I don't want the files, I already went to 'View' and you click "hide files".

    I can just see the writing of the Notes area while sharing the screen with the document I read in Acrobat Pro.

    Looks like a basic feature which Apple or Adobe Acrobat Pro should have, but I can't seem to find it.

    Looked for other solutions to the App Store, but what I've found is a bit expensive.

    I appreciate any assistance.

    I asked that your thread moved to the El Capitan forum.

Maybe you are looking for