Panel tabbed is not working in the page fragments used in a bounded task fl

Hi,
I tried creating a simple page fragment with a panel tabbed as below
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
xmlns:f="http://java.sun.com/jsf/core">
<af:panelStretchLayout id="psl1">
<f:facet name="center">
<af:panelTabbed id="pt1">
<af:showDetailItem text="showDetailItem 1" id="sdi1"/>
<af:showDetailItem text="showDetailItem 2" id="sdi2"/>
<af:showDetailItem text="showDetailItem 3" id="sdi3"/>
</af:panelTabbed>
<!-- id="af_one_column_stretched" -->
</f:facet>
</af:panelStretchLayout>
</jsp:root>
Then in an unbounded task flow, I added the bounded task flow which is just created above. when I run this page, the page is loaded but the tabs doesn't switch. When I click on the other tabs, it doesnt change, it is always active only in the first tab.
Is this a bug in adf, or am I missing something?
Can someone please help?
Thanks,
Sudarsan M

Hi Vinod,
Thanks for responding.
I want a page fragment with tabbedPanel to be loaded in my dynamic region. As I am facing this issue, I tried very simple example of creating a page fragment with a tabbedPanel of 3 tabs.
1. added this page fragment in an bounded task flow.
2. In the unbounded task flow(adfc-config.xml) added a view with the some jspx page and then added the bounded task flow created above as a static region in this jspx page.
3. When I run this view, I can see the page loaded with all the tabs in the page frament.
4. By default the first tab is selected, but when I tried to click on the other tabs, there is no response. It still stays in the first tab only.
Thanks,
Sudan

Similar Messages

  • I wanted to send a push notification, unfortunately it does not work. The page will not load. Anyone know why?

    I wanted to send a push notification, unfortunately it does not work. The page will not load. Anyone know why?

    Push notifications, I believe, is only for iOS.
    If it is for iOS, take a look at Using Apple push notifications with Digital Publishing Suite | Adobe Developer Connection

  • The multi-tabs is not working all the time. Windows7 Firefox 4.0.1 I have the correct opetions set for multi-tabs.

    The multi-tabs is not working. I have the correct options set for multi-tabs. But when I open Firefox and try to add a site from Bookmarks it uses the same tab that is opened.

    Right click a tab and you will get the option to bookmark all tabs. Or use keyboard '''Alt + B''' which opens the old style menu. You can make changes to Firefox, as explained in this post: [/questions/799856#answer-155765]

  • SharePoint 2013 "Help Menu" not working (Sorry, the page you're looking for can't be found)

    The Built in SharePoint 2013 Help Menu (?) on our Enterprise Farm for both the sites and Central
    Admin does not work.
    On Central Admin help the error comes back as: "Sorry, the page you're looking for can't be found".
    The site collections Help menu gets the error :
    "Unfortunately, help seems to be broken...
    There aren't any help collections in the current language for the site you're using."
    We have installed on all servers in the farm:
    December 9, 2014 Cumulative Update for SharePoint Server 2013 package (build 15.0.4675.1000)
    as well as the latest SharePoint update KB2768001 1/15/2013.
    I have checked:
    Get-SPHelpCollection
    Title                                                                                              
    Name
    SharePoint Help                                                                                    
    WSSEndUser.1033.15
    SharePoint Foundation 2010                                                                         
    WSSEndUser.1033.12
    Central Administration Help                                                                        
    WSSCentralAdmin.1033.15
    SharePoint Server 2010                                                                             
    OSSEndUser.1033.12
    SharePoint Help                                                                                    
    OSSEndUser.1033.15
    SharePoint Foundation 2010 Central Administration                                                  
    WSSCentralAdmin.1033.12
    Teacher Help                                                                                       
    EDUTEACHER.1033.15
    Central Administration Help                                                                        
    OSSCentralAdmin.1033.15
    Student Help                                                                                       
    EDUSTUDENT.1033.15
    SharePoint Server 2010 Central Administration                                                      
    OSSCentralAdmin.1033.12
    PerformancePoint Dashboard Designer 2010 Help and How-to                                           
    DashboardDesigner.1033.12
    The URL for the site collections is https://servername...../_layouts/15/help.aspx?Lcid=1033&Key=HelpHome&ShowNav=true
    We are only using Default English (US) language packs.
    In the directory of
    Directory of C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\HCCab\1033
    there are cab files.
    There are no pending upgrades on any SharePoint or SQL server, all other SharePoint components are working
    normally.
    Any ideas or suggestions?
    Thanks.
    John
        

    I'm interested in getting the local help to work while this is offline, I saw the following in an article, did you do this and it still does not work for you?
    "However the help won’t show up in
    SharePoint 2013 sites. You need to change the Help Collection item property SharePoint
    Version to15 to
    make it work."

  • Cascading LOV not working when the page is public

    Hi ,
    I have a cascading LOV in a tabular form which I have built using Denes Kubicek example from
    http://apex.oracle.com/pls/otn/f?p=31517:176:2702932664861989:::::
    Thanks to this wonderful examle I was able to make my cascading lov work.
    However when I make the page public , the second lov(which is based on the first one) does not work.
    Inorder to debug i changed get.get('XML') to get.get() and put an alert on it; to check if the select list string is being returned correctly by the application process - it returns null. The same alert returns the select list string when I put the authentication back on the page.
    Also I noticed when the page is public the application item (TAB_CASCADING_ITEM) is not getting populated with the value of the first select list.
    has anybody encountered the same issue ?
    Appreciate any suggestions?
    Thanks,
    Dippy

    One of the parameters in the htmldb_get is the page the process runs on. You should change that to the current page or make page 0 public as well.

  • Making the Tab key not work in the JTextArea

    In my view I have a JTextArea along with a bunch of JTextFields and JComboBoxes. The user is usually going to tab out of a field in order to go to the next field. What's happening is when the user tries to tab out of the JTextArea, the cursor just moves by a tab length within the JTextArea instead of going to the next field. And if the JextArea has some text in it and if the user tabs into the JTextArea, the whole text gets selected and on hitting the next tab, it gets wiped out.
    I am trying to make the JTextArea not respond to the tab by writing the following code. Keymap keyMap = JTextComponent.getKeymap(JTextComponent.DEFAULT_KEYMAP);
    KeyStroke tabKey = KeyStroke.getKeyStroke(KeyEvent.VK_TAB, 0, false);
    keyMap.removeKeyStrokeBinding(tabKey);
    jTextArea1.setKeymap(keyMap);But it's still not working. Can anybody tell what's wrong with that code. Or is there any other way to do it? Any help/hints appreciated.
    Thanks.

    >
    If you're using jdk1.4, those other solutions won't
    work because the focus subsystem has changed radically
    (see
    http://java.sun.com/j2se/1.4/docs/api/java/awt/doc-file
    /FocusSpec.html). The upshot is that you have to
    specifically register the keystrokes that you want to
    use for focus traversal. In your case, you have to
    re-register the Tab and Shift-Tab keys, and
    they don't seem to have provided a simple way to do
    that. Here's what I come up with:Set forwardTraversalKeys = new TreeSet();
    forwardTraversalKeys.add(KeyStroke.getKeyStroke(
    KeyEvent.VK_TAB));
    forwardTraversalKeys.add(KeyStroke.getKeyStroke(
    KeyEvent.VK_TAB, InputEvent.CTRL_MASK));
    textArea.setFocusTraversalKeys(
    KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
    forwardTraversalKeys);
    Set backwardTraversalKeys = new TreeSet();
    backwardTraversalKeys.add(KeyStroke.getKeyStroke(
    KeyEvent.VK_TAB, InputEvent.SHIFT_MASK));
    backwardTraversalKeys.add(KeyStroke.getKeyStroke(
    KeyEvent.VK_TAB, InputEvent.SHIFT_MASK |
    K | InputEvent.CTRL_MASK));
    textArea.setFocusTraversalKeys(
    KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS,
    backwardTraversalKeys);Or, you can just press CTRL+TAB instead of TAB when
    you get to the JTextArea :).=====================================
    i used the above thing but i am getting exceptions classcast exception n method not found (forwardTraversalKeys.add(KeyStroke.getKeyStroke(KeyEvent.VK_TAB));)keystroke.get keyStroke(int)???? where i am going wrong as it will be quite helpful for me am using jdk1.4.1_02
    thnaks

  • ERROR: browser.tabs.onTop not working now, my reason for using Firefox gone forever now?

    In the latest FF, setting the browser.tabs.onTop has no effect. I believe this is completely wrong step in UI because thinking of the user's focus:
    - The web page is the 'topmost' content having user's focus for the most of the time
    - The next are the tabs which he/she recently opened
    - Only then come the bookmarks
    - And finally, only then comes the address line
    Moving the tabs to the top means you force the user to move his attention/focus from the page contents skipping the lower priority areas (bookmarks, address line). This distracts the user and is simply bad news.
    Being quite simple option, I see no reason why the browser.tabs.onTop functionality was removed. This effectively removes another important advantage of FF over Chrome/IE. I know Classic Theme Restorer (Customize Australis) add-on, but don't want to rely on such things.
    Is THIS what the proclaimed customizability of Firefox is about these days? Sad.
    After many years of FF use in our company, I'm sorry but I will reconsider FF usage in our company if these things don't get fixed soon.
    Regards and thanks,
    Vaclav

    You can use either of the following add-ons.
    * https://addons.mozilla.org/firefox/addon/tabs-on-bottom/
    * https://addons.mozilla.org/firefox/addon/classicthemerestorer/
    If you don't want to install an add-on, put the following style in the ''userChrome.css'' file and restart Firefox. You can use [https://addons.mozilla.org/firefox/addon/stylish/ the Stylish add-on] instead, if you have it installed.
    * http://kb.mozillazine.org/UserChrome.css
    <pre><nowiki>@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
    /* The above line should appear only once in the file */
    #TabsToolbar { -moz-box-ordinal-group: 99 !important }</nowiki></pre>
    Also see
    * [[How to make the new Firefox look like the old Firefox]]
    '''One of the developers recently posted this explanation'''
    [https://support.mozilla.org/en-US/user/1079955 MikeDeboer] said
    Each setting you see in a computer program you use requires work; when a developer wants to build something new or improve something, he or she has to go through each related (hidden) setting and test if it still works like before and do that on each platform Firefox runs on. That's Apple's Mac OSX, various flavours of Linux and various flavours of Windows, including Windows XP. This costs time, lots of it, and that amount grows exponentially with each setting that's added. This comes on top of our work to continuously fix, improve and innovate Firefox. <br /> <br /> That's why we also removed the tabs.onTop preference. Awesome community members, who were unhappy about that change, created the Classic Theme Restorer add-on. They deserve our collective hugs.
    *'''For more linked help articles and the full quote please also see''' <br /> ''Why have you changed design in new Firefox 29.0?'' [/questions/998084#answer-566525]

  • 'Open New Windows In A New Tab' is not working when the popup is invoked by Flash

    I surf a lot of porn sites. And some of them invoke a popup if you click the play button of their Flash player. Even though I have FF set to 'Open New Window In A New Tab', this isn't working if a window is invoked by a Flash object. For example, if I want to watch porn clip on tnaflix<i></i>.com and click the Play button, then a popup window of livejasmin<i></i>.com comes up. But it doesn't open in a new tab. It opens in a new window, even though I've set the above mentioned option. This is very annoying. Please, fix it.

    Thanks for the responses and sorry for taking a while to get back. I have been looking around but not sure where is the "about: config page." When I click on Firefox "about" there is nothing to configure. What do I click on? TIA

  • History:Restore tab does not restore to the page listed

    In Firefox 29, when trying to restore a tab that I just closed accidentally, History, Recently Closed Tabs, "the closed tab to be restored" takes me to my home page rather than the tab that I want to restore. How can I set Firefox 20 to restore the desired tab? The desired tab is listed but the link does not function properly.

    Yes, CTRL-Shift-T brings up my home page. it works the same as going to History-Recently Closed Tabs- Select tab that was closed.

  • HT1212 i have a problem, my iphone is disabled and i can not get into it. the power button does not work and the computer i used before i do not have. icloud was not set up on it either. And it will not allow me to connect to my itunes. So what can i do t

    i have read ur forgotten password or device disabled after entering wrong password. iphone is desabled dont have computer i conected it to before and power button is broke so how can i get back into my iphone?

    You will have to restore the phone and set up as New. See: http://support.apple.com/kb/HT1212. The part you need is near the bottom, "If you have never synced your device with iTunes...". You will lose any content that is not backed up in iCloud.

  • Updates tab not working in the App Store

    The updates tab is not working in the App Store. I have to go to purchased tab to find the apps that need updating. How can I fix this? I've turn off the iPad multiple times hoping it will reboot but it doesn't help.

    Apparently there are problems updating updates on iOS devices >  Apps update not working. Was before but...: Apple Support Communities
    Try again later or tomorrow.
    It's been reported to Apple.

  • Firefox did an automatic update to 6.01, and now my middle mouse button is not working in the browser. It doesn't close tabs, it doesn't open new tabs by middle clicking a link, it doesn't allow me to middle click to scroll the page...

    Firefox did an automatic update to 6.01, and now my middle mouse button is not working in the browser. It doesn't close tabs, it doesn't open new tabs by middle clicking a link, it doesn't allow me to middle click to scroll the page..

    [BUG FIXED, see "EDIT 2" at the end of my post]
    I'm on Firefox 3.6.21, and I got this problem today after a Greasemonkey update (To version 0.9.10, apparently).
    Disabling Greasemonkey solved the problem, and re-enabling it reproduced the problem (middle-clicking links to open in new tab did not work, merely highlighted the link).
    I should also note that while Greasemonkey was enabled and the bug was affecting me, Ctrl+Click to open links in new tabs was also broken.
    I hope this helps!
    EDIT: It appears this is a known incompatibility/conflict bug between current versions of Greasemonkey and Tab Mix Plus. Read more here:
    https://github.com/greasemonkey/greasemonkey/issues/1406
    EDIT 2: GREASEMONKEY HAS NOW BEEN UPDATED with a workaround to fix the problem. Go to https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/versions/ to install the update manually. It hasn't been reviewed by Mozilla yet, so it won't be an automatic update for another day or two. All credit to "cannonfodder" below for noticing this; please mark his post as helpful!

  • Front page opens works shortly freezes. only yellow green buttons work. I click yellow to minimize normal top bar menu appears I choose new page, opens works normally. The restart saved tabs does not work on that first page.

    front page opens works shortly freezes.
    only yellow green buttons work. I click yellow to minimize normal top bar menu appears I choose new page, opens works normally.
    The restart saved tabs does not work on that first page.

    Hi @prdstudio3 ,
    Thank you for visiting the HP Support Forums. The Serial Number needed to be removed from your Post. This is From our Rules of Participation:
    Protect privacy - yours and others'. Don't share anything about yourself that you would not want to see on a road-side billboard. Don't post contact or other personal information-your own or anyone else's-or any content that you receive in one-to-one communications without the author's consent. For example, don’t post your computer’s serial # or contact information publicly, and do not allow someone you don’t know to remotely take control of your computer.
    If you need people to contact you directly, either ask them to send you a private message or subscribe to the thread so you will be notified when there are replies. You may also click on your name anywhere in the forum and you will be taken to your profile page, where you can find a list of threads you have participated in.
    Sharing personal email addresses, telephone numbers, and last names is not allowed for your safety. If you have any questions feel free to send me a private message in reply.
    Thank you
    George
    I work for HP

  • I would like to create the a swatch, add it to the library and import to the swatch panel.  The help pages available relate to earlier versions of Muse, which does not work with the 2014.2 release version that I have.  I have created a library folder, imp

    I would like to create the a swatch, add it to the library and import to the swatch panel.  The help pages available relate to earlier versions of Muse, which does not work with the 2014.2 release version that I have.  I have created a library folder, imported the colour swatch as just 4 colours as a mulib file.  I drag the four colours on to the muse page in design view but that is as far as I get.  Can anyone help?  Thanks

    I don't know since I don't share anything. You'll have to peruse the help files and check the permissions and ACLs on the Shared folder. According to the permissions on the Shared folder everyone can R&W. If you want those to be inherited by everything dropped into the folder, add an ACL for
    everyone allow read, write
    Details in the manpage for chmod. The actual steps are left as an exercise.

  • The option to open a new tab is not working?

    The option to open a new tab is not working?
    I click on the little box but nothing happens?

    Uninstall the Ask toolbar and it should work again. There is a compatibility issue with the Ask toolbar and Firefox that prevents new tabs from being opened.
    There are a couple of places to check for the Ask toolbar:
    * Check the Windows Control panel for the Ask Toolbar - http://about.ask.com/apn/toolbar/docs/default/faq/en/ff/index.html#na4
    * Also check your list of extensions, you may be able to uninstall it from there - https://support.mozilla.com/kb/Uninstalling+add-ons

Maybe you are looking for

  • A good viewer for photoshop, indesign and illustrator files.

    Hello everyone. I work at an designers firm, and we are avid users of the Adobe Creative Suite. However, it's expensive software, and certain people at the company only have to view the files we create. It's a bit of a hassle to create PDFs for them,

  • SBL (start before logon) : Can't get it to work

    I'm trying to get Start before logon working on a Cisco 1941. I've got it setup so it downloads the correct profile but when I test with a PC it doesn't work. It shows the server entry but doesn't even ask for a username and password and thus won't c

  • Trabajar con proyectos en Flash MX Professional 2004

    Hola amigos. Me gustaría saber si trabajar con proyectos implica necesariamente que tienes que compartirlo vía e-mail. Tengo una serie de archivos en mi proyecto y he publicado el proyecto entero mediante la opción de " publicar proyecto". Pero al co

  • HT4864 my incoming server name in mail preferences

    My incoming server name in mail preferences comes up shaded so I cannot change it, how do i change it?

  • Download PDF Version of Sales Document.

    Hi Guru's I want to open up an discussion regarding ability to Downlaod PDF version of Documents in Sap. we are using RFC interface to create Sales Document and that user is defined as "Communication " User in Sap. So as per Sap in order to Download