Show the different regions by clicking on the entries in the list

Hello world

I have a page with several regions, but I want to only show one at a time; I want you to show with a checklist. So, whenever I click on an entry in the list, I want to see a specific region and if a click on a second entry in the list, I want to see another. It must be without submitting the page (for different reasons).

An example of I want to do is when you change an element in the APEX; You can see a list of buttons 'Show all', 'name', 'Displayed', 'Label', 'Settings', etc. Function of the key, you click, you will see a different region.

I think it is a very sleek and elegant way to show a lot of information to users, if only I could apply it... any ideas? :)

Thank you
Elena.

Elena.MTC wrote:

I have a page with several regions, but I want to only show one at a time; I want you to show with a checklist. So, whenever I click on an entry in the list, I want to see a specific region and if a click on a second entry in the list, I want to see another. It must be without submitting the page (for different reasons).

An example of I want to do is when you change an element in the APEX; You can see a list of buttons 'Show all', 'name', 'Displayed', 'Label', 'Settings', etc. Function of the key, you click, you will see a different region.

I think it is a very sleek and elegant way to show a lot of information to users, if only I could apply it... any ideas? :)

4.1 the best way to proceed is to use the integrated Region Selector display.

After you have created the RDS, customization is necessary to display only one region at a time.

1 hide the RDS "Show all" link (and change the second link to resemble the first) by adding this stylesheet in the header HTML page:


2. by default, all regions will be displayed when the page is loaded. Hide others using dynamic Action to simulate a click on the first link in the region of the RDS and the first region:
H4. When

Event: Page load
H4. Real Action

Action: Run the JavaScript Code
Fire on loading the Page: No.
Code:

$('.apex-rds-container li:first-child+li a').click()

See this article to view region selector sticky if you want the value of the visible area to be preserved if the page is refreshed.

Tags: Database

Similar Questions

  • Firefox can show the list of bookmarks alphabetically like Internet Explorer?

    I don't want to have to go to "show all bookmarks" and then search for a bookmark. I just want to see the list and go down to the right, or start typing it and get there.

    Hello

    Best way to set your bookmarks in alphabetical order is to click with the right button on a folder of bookmarks and you have the option of "sort by name".

    Otherwise, a glance at the list of bookmark have associated addons (link).

    Hope that this help, please come back here if you need additional assistance.

  • How to send emails automatically without showing the list address?

    I often forget to use the BCC field when sending emails to my distribution list. The address list then shows the email of the recipients. I don't want the list to display. How can I avoid this error automatically as I age?
    Scotty84

    Try this add-on:

    https://addons.Mozilla.org/en-us/Thunderbird/addon/use-Bcc-instead/

    http://chrisramsden.vfast.co.UK/3_How_to_install_Add-ons_in_Thunderbird.html

  • If I click on Favorites and then scroll through the list of favorites, it does not show the entries in each file.

    * Original title: to access Favorites

    If I click on Favorites and then scroll through the list of favorites, it does not show the entries in each file but suddenly close showing the list of favorites. . I use Chrome and it happened all of a sudden. It was functional this morning. All the advice to fix this will be greatly appreciated

    Have you tried the Chrome forum? https://productforums.google.com/forum/#! forum/chrome

  • When I click on the menu option 'Open Site' he does not what to expect, is rather shows the desktop on my iMac.

    When I click on the menu option 'Open Site' he does not what to expect, is rather shows the desktop on my iMac.

    What you see is exactly the way it should work. Open the site your Finder window opens, so you can access the .muse file you want to open. Recently opened (just below it) will show the list of sites you have worked on lately. I don't know what else await you.

    I should probably see a list of site temp I want to open or DELETE?

    No, Muse or any other program besides will not open a file that you do not select to open. To remove a site simply open Finder on Mac go to the location of the file and delete it in one of the many ways that a Mac allows you to do.

  • List shows the results of unwanted files in Acrobat 9 std.

    I have been using Acrobat 9 standard for 5 years now. My main use is to be found in the files of. PDF files. Recently, I am facing a problem. Whenever I search (Basic / Advanced) for a word in several files kept in a file, the result shows the list of all the files (which are analyzed) in results windows although there is no case of "searched the word". For example, I have a folder named "D:\JOURNAL" have 40 records. If I have a word search "ABCD" in "D:\JOURNALS". the result is 40 files with 3 instances' & the list displays all the names of file 40. In fact, it should only show files with one or more instances of "ABCD".

    Can someone tell me how to change it?

    Thank you.

    HCGNA

    Try this:

    In the "Research" of the preferences category, click "Clear Cache content".

  • Get the selected value in the list drop-down/messagechoice

    Hi friends,
    App R12.
    I create a drop-down list programmatically in the process request:

    OAMessageChoiceBean OAMC = oapagecontext.getWebBeanFactory () .createWebBean (OAWebBeanConstants.MESSAGE_CHOICE_BEAN, null, oapagecontext, null) (OAMessageChoiceBean);

    oamc.setPickListViewUsageName ("MyVO1");
    oamc.setListValueAttribute ("MyId");
    oamc.setListDisplayAttribute ("MyDescription");
    oamc.setID ("xxMypicklist");
    oamc.setRendered (Boolean.TRUE);
    oawebbean.addIndexedChild (oamc);

    This shows the list of choices and there MyVO1 query search results.

    Now, I want retrieve value MyId in the processFromRequest (after pushing a button on the screen). I do the following:

    OAApplicationModule am = pageContext.getApplicationModule (webBean);
    ...
    MyVOImpl myvoimpl = (MyVOImpl) am.findViewObject("MyVO1");
    MyVORowImpl PicklistRow = myvoimpl.getCurrentRow ((MyVORowImpl));
    NUMBER auxId = (NUMBER) PicklistRow.getAttribute ("MyId"); THIS SENTENCE GIVES A NULL POINTER EXCEPTION

    Then..., is not enough to find the original Version? and get the rank "perceive"... and then get the desired attribute?

    Do I need to load data from MyVO1 into myvoimpl? How? How to get the folder selected on the screen?

    Many thanks for any help. It is very urgent for me to solve this problem. Dev guide does not help with this kind of usual problems.
    Jose L.

    Hello

    u can not get the value of this way, becz you try to get the value of the original Version which is used for bean of choice message, to get the value selected in this field of choicebean message, you must get the VO initialized for this page, both would be different VO, you can opt for the following approach

    (1.) an another VO wiil be there in your page get implemented to capture the data on this page, the attribute of this VO would be added to your field of beans of choice, need to understand that VO and and capture your selected value.

    or the other way is

    2.), you can change your code in the same way in the pR method

    OAMessageChoiceBean OAMC = oapagecontext.getWebBeanFactory () .createWebBean (oapagecontext, OAWebBeanConstants.MESSAGE_CHOICE_BEAN, null, "XXMypicklistBean) (OAMessageChoiceBean);

    and get the selected value in pFR method in this way

    OAMessageChoiceBean getCHBean = (OAMessageChoiceBean) (webBean.findIndexedChildRecursive ("XXMypicklistBean"));

    String val = (String) getCHBean.getValue (pageContext));

    thanx

    Pratap

  • Save dialog box under does not display the list of files

    Terminal Server R2 of 2012.  Dialog box "Save as" for a user does not display the list of files.  The address bar shows the way, there is a form for the file name box, and the user can save the file successfully.  But the space that would show the files in the selected directory is empty.  There is no form for the list of files box, it's just the grey box dialog box space - that is to say, it is not that it looks like an empty folder, there is simply no display form box.

    The 'Open' dialog box appears normal, showing the list of files in the selected folder.

    I had the user close the session on the Terminal Server and access it from another PC, even if I was not expecting to make a difference, and it didn't.  I have also connected on myself and has not experienced the same problem.  So it seems to be user-specific.

    What a setting, the user has selected by mistake, or a mistake any?

    Thanks for any help.

    Hello

    Post your question in the TechNet Server Forums, as your question kindly is beyond the scope of these Forums.

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?category=WindowsServer

    See you soon.

  • Add the object in the list

    Hi how are you guys? I hope you all well...

    here...

    IAM trying to show the list items in the list... but I couldn.t here

    first I created the object and the array object

    var za:int = 0

    var itemsinfo:Object = new Object()

    var da: Array = new Array (100)

    ...

    then in another place, I set the properties for the object, andi made paintings objects like this

    Itemsinfo.name1 = new Array()

    Itemsinfo.price1 = new Array()

    After that i, ve packed 2 text boxes, one for the value of the element and the second for the price

    additemsvar = additems.text

    addpricevar = int (addprice.text)

    then I checked the values in the object

    for (var z: itemsinfo String) {}

    trace (z + ":" + itemsinfo [z])

    }

    and everything is good, but the problem is when I add these berries to the list object, it doesn, t work

    i.ve tried with 3 deffrent ways

    ListBox1.AddItem ({label: String (itemsinfo.name1 [za])}) //displaying not defined in the list

    listBox1.AddItem ({label: (itemsinfo.name1 [za])}) //displaying nothing and it just take a place

    listBox1.AddItem (itemsinfo.name1 [za]) / / nothing happened

    Thank you

    Itemsinfo.name1 is initialized (in a table), but contains no items for the zero element'th will be undefined.

  • I work with dreamweaver cs6 running on Apple Mavericks.  The site definition window shows all different fields by opening. I have to click blind with the mouse cursor in this window until the fields appear.  It is a very bored

    I work with dreamweaver cs6 running on Apple Mavericks.

    The site definition window shows all different fields by opening. I have to click blind with the mouse cursor in this window until the fields appear.

    It is somehow very annoying to complete the connection to the server and all the other things.

    Is there a solution?

    If this is the case, I think that it is perhaps a good idea to uninstall Dreamweaver. Before you reinstall, make sure that your personal configuration file has been deleted (see reinstalling Dreamweaver (or the extensions Manager) fails to solve problems). You should then have a completely clean copy of Dreamweaver has again the default settings of the program.

  • Difference between different models (sold in different regions) of the iPhone 7

    I'm traveling to the Japan, and it turns out that my phone broke. So, I plan to buy iPhone 7. But I noticed that there are different models according to the countries or regions. According to Apple customer service, it has to do with different bands of LTE in different regions. But exactly the same bands that WE supported the Japanese model (which is completely separate from all other) / version of the EU with the exception of it's CDMA.  She would work very well after my return to Europe (Germany)? Where can I buy non-CDMA, GSM version for the Japan as well.

    Here is the link showing the differences between the various models of iPhone 7.

    You have a question?

  • When I click on "Copy picture", when I use the dough, it's to show the image URL

    Hello

    I'm having a problem about the exemplary Image resource. I need to copy and paste a lot of images to work.

    I click on an image, holding control and then press "copy picture". But when I paste, it shows the URL of the image and not the image. I tried on different browsers and apps, but the same error occurs.

    Can someone help me please? How should I do? It has changed from one day to the other.

    Thank you

    It looks like you use context Menus to copy your images. Depending on your machine or software, each user will have different contextual shortcuts.

    You might do better to use an application like SnapnDrag, which is free in its basic mode.

  • When I right click on the icons to run where it shows the location of the opened file and run as administrator under that it says "start". Got rid of the virus, but cannot get rid of "start".

    When I right click on the icons to run where it shows the location of the opened file and run as administrator under that it says "start". I ran 6 different viruses, malware, rootkit, scans etc. everything looks clean, but 'start' is still there when I right click the executable files. How can I get rid of him? I tried the System File Checker tool, it didn't work. When I click on "Start" it is not now open applications.

    Do not know if it is any help.

    http://www.online-tech-tips.com/computer-tips/Windows-right-click-context-menu/

    Be careful when you change the registry so... Make sure that you have backups.

  • My Lightroom does not. It is showing the message - failed to open the Lightroom catalog called Catalog Lightroom because it is too new to be used by this version of Lightroom. You want to select a different catalog?

    My Lightroom does not. It is showing the message - failed to open the Lightroom catalog called Catalog Lightroom because it is too new to be used by this version of Lightroom. You want to select a different catalog?

    It is a catalog that you created on your computer, or coming from another computer?

    If it is one that has been created on your computer, you can search your computer to see if you have two different versions of Lightroom installed. If so, then you want to open the new version of Lightroom by double-clicking its icon, and then you should be able to open the catalog.

  • Hide/show the region

    Hello
    I'm trying to change the default behavior to hide/show the region to show, after a few attempts, I got partially work but now does not work by clicking on the icon to enable/disable/hide also changed the icons and added a type = "" but his does not work. " Any help? Thanks and greetings

    You can do so at the level of the model. Copy the skin and see the area to Hide and Show (show) and then modify the model. Essentially 2 thing I've changed are the image of collapse_minus.gif and style ="". My suggestion is to make a copy of the region before making any changes. It works for me in IE, Chrome and FF.







    #TITLE #.
    #CLOSE # PREVIOUS # ##DELETE NEXT ##EDIT ##CHANGE # CREATE # CREATE2 # EXPAND ##COPY # HELP #.
    #BODY #.

Maybe you are looking for