How to hide the region

Hi, I created a page region 0 in my apex application. I understand that whatever it is in page 0 apply to all pages. Anyway, my problem is that the title of region shows on any page. They is a way to hide the region?

Hi Dave.

You can create a new model of the region with a model code;

Templates-> Create model-> area - from scratch-> him give a name. Custom 1 model (for example) - class create.

Edit this new model and modify the definition of #TITLE #.
#BODY # to the following:

#BODY #.

Change your region to use this model and you'll be fine.


Edit

I just noticed that your javascript has been in the header.  I have my case is in the source of the region as

Kofi

Tags: Database

Similar Questions

  • How to hide the region report?

    Hi all

    In my application, I am uisng the concept of visibility serach when I click Search link I display another report as a message, because they have not entered or selected something before clicking the serach button.
    < {font size = '7' color = "red" > no data found for the search criteria.} Please < {a href = "f? p = & APP_ID.:6: & SESSION. {": No.:" > click here < /a >} re-enter the serach criteria! < {/ make >}


    Now, when this message comes they click here uisng the above message while this region must hide and only the first region should be present. For this, I tried like this

    < {font size = '7' color = "red" > no data found for the search criteria.} Please < {a href = "f? p = & APP_ID.:6: & SESSION. {": No.: P6_HIDE:hide" > click here < /a >} re-enter the serach criteria! < {/ make >}

    But there he throws error like 'cannot find the item for the '' show' ' element ID in the application. How to solve this problem.

    Or

    They is sort of othet instead of display the report can I view in the popular message stay no data found.

    Thank you
    David...

    You use the page validation to check if the search value is not null

  • How to hide the LOGO Apex region

    We use the apex of interactive reports that we want to integrate with a front-end web exist (window based). I want to hide the 'LOGO' region, as the end before the Wicket already takes care of the LOGO. How delete/hide the LOGO area.

    I suggest you open another thread for the other issue. You can close this thread if your question is answered.

  • How to show or hide the region of the shuttle during the click on the radio buttons?

    Hello

    I'm new to JDeveloper. Here is my requirement.

    1. create 2 radio buttons: Yes and no and default displays "" selected radio button.

    2. create a region of shuttle with select query in VO.

    Query is:

    Select 'No group' for_user, for_pkg double null

    Union

    Select "Company" for_user, for_pkg "SEGMENT1" double

    Union

    Select 'Rental' for_user, for_pkg 'SEGMENT2"double

    Union

    Select 'Cost center' for_user, 'SEGMENT4' double for_pkg

    Union

    Select 'Project' for_user, 'SEGMENT5' double for_pkg

    Union

    Select "Intercompany" for_user, "SEGMENT8" for_pkg of the double

    order by nulls first for_pkg

    3. initially hide the region of the shuttle during the loading of the page.

    4. click on the radio button 'yes', display area of the shuttle with values at the head of list of query VO and empty list leak.

    5. new click on the 'no' radio button, he must hide region and so screen shuttle shuttle dynamically according to the selected option button.

    But my problem is I am able to hide area shuttle when the page loads at the beginning and after that, when I'm clicking 'Yes' radio button, is just to display area shuttle empty without value in the main list and once when I'm clicking 'No' radio button, it should hide area shuttle but he's not hiding. I used the RPP to show or hide the area Shuttle under certain conditions. I use JDev 10.1.3.3.0 version as we Oracle EBS version 12.1.2 in our society.

    Please find the attached draft and suggest me proper with examples of sample approach.

    Monika,

    I tried to get this working in the lower version of Jdeveloper and looks like it works.

    Can you make the change below and see what happens.

    1. modify your query to VO as below: (I replaced null with SEGMENT0)

    select 'No Grouping' for_user, 'SEGMENT0' for_pkg from dual
    union
    select 'Company' for_user, 'SEGMENT1' for_pkg from dual
    union
    select 'Location' for_user, 'SEGMENT2' for_pkg from dual
    union
    select 'Cost Center' for_user, 'SEGMENT4' for_pkg from dual
    union
    select 'Project' for_user, 'SEGMENT5' for_pkg from dual
    union
    select 'Intercompany' for_user,'SEGMENT8' for_pkg from dual
    order by for_pkg
    

    2. place VO execution to the processFormRequest:

        public void processFormRequest(OAPageContext pageContext,
                                       OAWebBean webBean) {
            System.out.println("In process Form Request");
            super.processFormRequest(pageContext, webBean);
            OAApplicationModuleImpl appModule =
                (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
            String eventParam = pageContext.getParameter(EVENT_PARAM);
            System.out.println("eventParam: " + eventParam);
            if ("showHideShuttle".equals(eventParam)) {
                //  appModule.invokeMethod("deletetrailing");
                System.out.println("Inside If");
                OAMessageCheckBoxBean messageCheckBoxBean = (OAMessageCheckBoxBean)webBean.findChildRecursive("checkBoxBean");
                System.out.println("messageCheckBoxBean : " + messageCheckBoxBean);
                String messageCheckBoxBeanVal = (String)messageCheckBoxBean.getValue(pageContext);
                System.out.println("messageCheckBoxBeanVal: " + messageCheckBoxBeanVal);
    
                if ("Y".equals(messageCheckBoxBeanVal)) {
                    OAViewObjectImpl shuttleVO1 =
                        (OAViewObjectImpl)appModule.findViewObject("ShuttleVO1");
                    if (shuttleVO1 != null) {
                        shuttleVO1.setWhereClause(null);
                        shuttleVO1.setWhereClauseParams(null);
                        shuttleVO1.executeQuery();
                        System.out.println("Executed Query : " + shuttleVO1.getQuery());
                    }
                    OAViewObjectImpl shuttleVO2 =
                        (OAViewObjectImpl)appModule.findViewObject("ShuttleVO2");
                    if (shuttleVO2 != null) {
                        shuttleVO2.setWhereClause("1=2");
                        shuttleVO2.setWhereClauseParams(null);
                        shuttleVO2.executeQuery();
                        System.out.println("Executed Query1 : " + shuttleVO2.getQuery());
                    }
                }
                String[] name = { "RenderAttr1" };
                String[] val = { messageCheckBoxBeanVal };
    
                Serializable[] params = { name, val };
                Class[] paramTypes = { String[].class, String[].class };
                appModule.invokeMethod("setXXCustomPVOValues", params, paramTypes);
    
            }
    
        }
    

    3. move Spel link shuttle Bean for the region of header above.

    Some useful links for the shuttle Bean:

    Technology blog based in Java of Sushant: 13. Area of application OFA shuttle

    Framework OA Blog: control of the shuttle as part of OSTEOARTHRITIS

    See you soon

    AJ

  • How to hide the names of the recipients when I send an email to many people?

    I'll send a message to a lot of people I know, and I think that some of them would rather not showing e-mail addresses. How to hide the?

    You use the BCC (blind carbon copy) field instead of the CC field to prevent one of the most complete list.

    Probably there is a button on the edit page to reveal this field.

  • How to hide the images used in imovie 10.1.2?

    I am a new user of iMovie and use the latest version. How to hide the photos that I already added to the film? Moreover, that mean the purple and orange lines on the photos? Thank you!

    You can not hide, but the orange lines at the bottom of the clips in the media pane show what parts of clips have been used in the scenario, if you can easily avoid reuse them if that's what you want to do.  The purple lines at the top of some parts of some clips show moved excessive (which cannot be stabilized).

    Geoff.

  • How to hide the menu item 'bookmarks '?

    Firefox 5.0.1
    At the menu bar: 'File', 'Edit', 'View', 'History', "Bookmarks", etc.
    How to hide the element of "bookmarks"?
    I have the add-on PLAINOLDFAVORITES installed and
    I forgot how with v3.6.18.

    Thank you very much

    Click the Firefox button and click on Add-ons -> Add-ons Manager, tab opens-> go to Control Panel Extensions-> select your add-on "Favorite PlainOld" , click Options

    Check and tell if its working.

  • 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.

  • How to hide the photos in my iPhone 6 more?

    Hello Apple!

    I searched for tutorials on how to hide the photos in my "Photos" application They say that, I will select a photo, then press on hold... then action will pop up with the options "Copy" and "hide".

    To do this, do not show the "copy" and "Hide" options.

    Why? Is there a function I need to activate?

    Thank you.

    Hello Apple!

    It is a user at tech support forum, not Apple.  Nobody is here saying 'why' Apple does or doesn't do anything.

  • How to hide the button only break on the toolbar at run time

    Hello

    I had to hide all the buttons as run, run streaming, vi and other abandoned by accessing the properties VI and by unchecking the corresponding options.

    When I run the vi, everything becomes hide except the pause button and I found no option to hide manually as well as programmatically.

    can someone tell me how to hide the pause button. I have an urgent need for same.

    Thank you best regards &,.

    Samriddh Sarbalhi

    Hello

    You need...

    Properties of VI--> execution

    Turn off "enable debugging".

    Rod.

  • How to hide the submenu in FoxPro9?

    How to hide the submenu in FoxPro9?

    Try the FoxPro Forum

    http://social.msdn.Microsoft.com/forums/en-us/home?Forum=visualfoxprogeneral

    Don

  • How to hide the sim 1 &amp; 2 Xperia Z3 double icons

    I have Xperia Z3 D6633 double lollipop 5.0.2.
    How to hide the sim 1 & 2 status bar icons and save more space for other APA as a player, WiFi, alarm, calendar...?
    I turned off the State of the battery with the endurance and the percentage of the cause of the battery of the overcrowded state bar!

  • How to hide the WLAN icon, which is untouchable?

    * Original title: Ghost WLAN icon

    Hello

    I have a question. I use bluetooth and other wireless connections.

    How to hide the WLAN icon, which is untouchable?

    Hello

    Thanks for posting your query in Microsoft Community.

    Let me ask you;

    • Remember to make any particular changes in the computer before you see this icon?

    Now, I ask you to refer to the information provided in the link below thread by JCarp responded on 29 June 2011 and follow the suggestions.

    Desktop icon question - great, WLAN icon on the desktop

    Hope this information is useful. Please feel free to answer in the case where you are facing in the future other problems with Windows.

  • How to hide the application programmatically?

    Hello

    How to hide the application by programtically?

    Thank you.

    Just to clarify this point, here's what you need to do to use the lines that I gave you:

    In the fieldChanged for the button method, you must run the lines that I showed you.

    This will put your UiApplication in the background.  The user will be able to bring to the forefront again by pressing the icon or choosing the form of application for the selector of the task.

    The user can in fact do roughly the same thing by pressing menu and selecting ' Application Switch, if it appears in the menu.  And that's roughly the same by pressing the menu key and then selecting another application in the selector of the task.

    If this isn't what you want, then please describe what you want again and why it's different from this.

  • How to hide the keyboard by programming?

    How to hide the software keyboard by programming in my code?

    In your form class:

    getVirtualKeyboard () .setVisibility (VirtualKeyboard.HIDE);

Maybe you are looking for