JHS11 TP2 - Disappearing tabs

Hi,
During the migration of a jhs10 application to jhs11 I got some strange behaviour with a multi-record detail group in a tabbed region.
I have a one "master"-group, in table layout, with 7 detail groups(also in table layout).
I have placed all detailgroups in regions.
Some are mixed with items of the "master"-group but most of all they are groupregions direct below a region-container(tabbed).
Now I have got some strange behaviour.
2 of the 7 detail-groups show but dissappear when I click the region-tab and move over the tab.
For clarification: When I only click the tab the group is displayed. When I move out of the tab the group slides up and dissappears.
This is only if there are no detail records. Every thing works fine if there are detail records.
When navigating to another master-record, with or without detail-records, the complete tab is displayed.
I removed all depencies and rendered expressions. There is also no difference between the templates used by working tabs and tabs that are not working.
(I used the default templates)
Any suggestions are appreciated!
Regards,
Romano

Romano,
This sounds like an ADF Faces rendering issue.
Can you try to build a similar page with drag and drop, without JHeadstart, and see whether you can reproduce this?
Steven Davelaar,
JHeadstart Team.

Similar Messages

  • JHS11 TP2 - Jdeveloper hangs when generating application

    Hi,
    I have got an issue with JHS11 Tp2.
    When generating the application JDeveloper seems to hang (I waited about 10 minutes before I killed it.).
    In my jdev console I see the following :
    18-sep-2009 8:37:51 oracle.ide.boot.Launcher throttleLocale
    INFO: Locale nl_NL is not supported by this product. Forcing locale to en_US.
    Loading JHeadstart Addins
    Addin | Version | Status
    JHeadstart Shared Components | 11.1.1.0.46| Loaded
    JHeadstart Forms2ADF Generator | 11.1.1.0.46| Loaded
    JHeadstart OraFormsFaces Generator | 11.1.1.0.46| Loaded
    JHeadstart Utilities | 11.1.1.0.46| Loaded
    JHeadstart Development Environment | 11.1.1.0.46| Loaded
    JHeadstart Application Generator | 11.1.1.0.46| Loaded
    08:40:37 INFO (CollectionFactory) -Commons Collections 3.x available
    08:40:37 DEBUG (CollectionFactory) -Creating [org.apache.commons.collections.map.LinkedMap]
    08:40:37 DEBUG (CollectionFactory) -Creating [org.apache.commons.collections.map.LinkedMap]
    08:40:37 DEBUG (CollectionFactory) -Creating [org.apache.commons.collections.set.ListOrderedSet]
    JHeadstart Debugger: no debug session exists with key: "JAG"
    08:41:37 DEBUG (CollectionFactory) -Creating [org.apache.commons.collections.map.LinkedMap]
    08:41:37 DEBUG (CollectionFactory) -Creating [org.apache.commons.collections.map.LinkedMap]
    08:41:37 DEBUG (CollectionFactory) -Creating [org.apache.commons.collections.set.ListOrderedSet]
    08:41:44 DEBUG (ReloadableResourceBundleMessageSource) -Clearing entire resource bundle cache
    08:41:44 DEBUG (CollectionFactory) -Creating [org.apache.commons.collections.map.LinkedMap]
    08:41:48 DEBUG (ReloadableResourceBundleMessageSource) -Loading properties [GeneratorText_nl.properties]
    08:41:48 DEBUG (ReloadableResourceBundleMessageSource) -Creating MessageFormat for pattern [{0} met deze {1} bestaat reeds] and locale 'nl'
    08:41:48 DEBUG (ReloadableResourceBundleMessageSource) -Creating MessageFormat for pattern [{0} met deze {1} bestaat niet] and locale 'nl'
    08:41:48 DEBUG (ReloadableResourceBundleMessageSource) -Creating MessageFormat for pattern [Kan {0} niet verwijderen terwijl afhankelijke {
    1} bestaat] and locale 'nl'
    08:41:48 DEBUG (ReloadableResourceBundleMessageSource) -Creating MessageFormat for pattern [Invoeren {0}] and locale 'nl'
    08:41:48 DEBUG (ReloadableResourceBundleMessageSource) -Creating MessageFormat for pattern [Wijzigen {0} '{'0}] and locale 'nl'
    08:41:48 DEBUG (ReloadableResourceBundleMessageSource) -Creating MessageFormat for pattern [&Invoeren {0}] and locale 'nl'
    08:41:48 DEBUG (ReloadableResourceBundleMessageSource) -Creating MessageFormat for pattern [&Verwijderen {0}] and locale 'nl'
    08:41:48 DEBUG (ReloadableResourceBundleMessageSource) -Creating MessageFormat for pattern [Waarschuwing] and locale 'nl'
    08:41:48 DEBUG (ReloadableResourceBundleMessageSource) -Creating MessageFormat for pattern [{0} '{'0} verwijderen?] and locale 'nl'
    08:41:48 DEBUG (ReloadableResourceBundleMessageSource) -Creating MessageFormat for pattern [&Opslaan] and locale 'nl'
    08:41:48 DEBUG (ReloadableResourceBundleMessageSource) -Creating MessageFormat for pattern [&Annuleren] and locale 'nl'
    08:41:48 DEBUG (ReloadableResourceBundleMessageSource) -Creating MessageFormat for pattern [Geen rijen gevonden] and locale 'nl'
    08:41:49 DEBUG (ReloadableResourceBundleMessageSource) -Creating MessageFormat for pattern [{0}] and locale 'nl'
    In the JAG Developer log the last step is : JAG-INFO-00000 [ MenuAdminService ] Validation application definition started.
    The last JDeveloper logline (at the bottom of the IDE) is : Load done oracle.jheadstart.model.adfbc.security.query
    I tried to use a different jdev_user_dir but that did not solve my problem.
    Reinstalling JDeveloper did not solve my problem either.
    Do you have any experiences like this?
    Regards,
    Romano
    Edited by: Romano Londt on Sep 18, 2009 1:07 AM

    Hi All,
    I found something. In my model.jpx file I found the folowing tag multiple times (about 3500 times):
    <AppContainee
    Name="JhsModel"
    ObjectType="JboProject">
    <DesignTime>
    <Attr Name="_SourceName" Value="jhsadfrt-11.1.1.jar"/>
    </DesignTime>
    </AppContainee>
    When I deleted all but one occurrence the generator performed normally.
    Can you tell me how to prevent this behaviour?
    Regards,
    Romano

  • ShowOneTab with forEach - disappearing tabs

    I'm using the following code to generate a set of tabs. On initial load the tabs and the first set of components render correctly, but when I click to switch to another tab, all tabs disappear resulting in a blank page.
    organizerGroups is a list of group objects from which I pull the tab names.
    organizerFieldList is a list of lists of values (one list per group) from which I generate the page components.
    (Both lists have the same length.)
    <af:showOneTab position="above">
    <af:forEach var="fieldList" varStatus="status" items="#{myBean.organizerFieldList}">
    <af:showDetailItem text="#{myBean.organizerGroups[status.index].name}">
    <af:panelForm>
    <!-- generate controls from organizerFieldList -->
    </af:panelForm>
    </af:showDetailItem>
    </af:forEach>
    </af:showOneTab>
    Any help is appreciated. Thanks.

    Thanks for the response! Turns out the bean's scope was set to request...the lists weren't available after the refresh.

  • Browser Disappears; Tabs Attempt To Close

    I have two recurring issues, and I wonder whether they are related.
    First, my browser periodically will just disappear. I understand that sometimes by scrolling down the "show desktop" button on the lower right corner of the screen can get touched which will hide the browser but this will happen when I'm not even near the scroll bar, and when I doublecheck the "show desktop" button just to see if my browsing page will reappear it does not. I think my disappearing browser is unrelated to any inadvertent hitting of the "show desktop" button.
    Second, I often have two or three tabs open, and out of the blue will get the warning message that I am about to close multiple tabs even when I was not attempting to close anything, and I was nowhere near the x-out button on the upper right corner of the screen.
    I'd appreciate any insight that folks may have with respect to either or both of these issues. My gut tells me they're probably related but I wouldn't know.
    I've done multiple virus scans with trend micro and malwarebytes with negative results.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Disappearing Tabs

    Hi,
    4 tabs on a region.
    When the page displays a simple report within a tab, everything 's ok. But when clickin on the 'Next' button on the report, all my tabs disappear....
    What's happening ?

    Hmmm...unfortunately you are correct. I can reproduce your symptoms in Portal 3.0.8.9.0.
    Metalink says that the problem has been fixed in the next release of Portal (9.0.2) which will come out with the next 9iAS, I believe.
    I know that doesn't help you any, but....
    -melissa

  • SharePoint 2013 IE Bug - IE10 Windows 8 - 'Open in Explorer' and disappearing tabs

    Hi,
    As stated in my title, I'm having an issue with SharePoint with the 'Open in Explorer' tool.  In reality, I can't use it because I can't get to the correct tab.  When I go to a document library, and then click on the 'library' tab at the top of
    the screen in the toolbar ribbon, the entire toolbar ribbon disappears with all the labels! The word 'library' is even gone.  Not sure why this is, but it is definitely a huge inconvenience at this point.  Any instruction on this would be great!
    Thanks,

    Have you tried adding the site to Compatibility View?
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • II never use tabs at a desktop. Tabs in desktop Firefox are obstructive. Can they be eliminated, ever.

    II never use tabs at a desktop. Tabs in desktop Firefox are obstructive. Can they be eliminated? ever?
    There seems to be a jackboot coercion to eliminate a multi-window view in Firefox to the point where, in the current iteration, there is a permanent single space wasting tab in the header.
    Like many I have many programs open, spreadsheets, text and graphic editors, sometimes 2 or more browsers.
    ALL are easy to find on the task bar until they are obscured by tabs.
    I followed the gravitational pull toward tabs for mobile use.
    There they can be justified.
    They are counterproductive in desktop usage.
    Even the developers tab-killers have been eliminated.
    Do we all have to accept tabs like GMOs and fluoride?
    Is there a hope for a full desktop view in Firefox?

    @Tony98
    You will observe that this is a question for developers.
    I am familiar with far more alternatives than you could suggest.
    This question is for Firefox developers please.
    For you less experienced home users with just one PC I will explain again.
    There is a client base that prefers windows to tabs for business reasons, regardless of OS, and purely for ergonomics.
    With several programs open, spreadsheets, graphic displays, sometimes 2 or more browsers, ALL are easy to find on the task bar until they are obscured by a browser with tabs open in one stack.
    I see tabs as a current fad, useful for small screens on low res phones.
    Tabs in apps on mobile devices is just fine.
    There we use a finger or stylus.
    On desktops, we use a mouse.
    Current smartphones and tablets, have comparable resolution and utility to desktops.
    They just lack power. That will change.
    Firefox is the preeminent browser.
    It is a mainstay of Linux and Linux appliances.
    To push it toward "tabs only" as if just for phones is a mistake.
    When MS Windows 8 is used in business it is used always in desktop mode, and with a mouse, not panes.
    That's why business rejected it when released.
    When the mouse disappears, tabs may become useful on desktops.
    For now the mouse is here to stay, and so should the windowed browser.
    As much as I dislike Internet Explorer, it has a simple "no tabs" option.
    So should Firefox.

  • Since upgrade I can no longer see tray icons on bottom of screen - how do I uncover them?

    Since the latest upgrade, Firefox now covers my entire screen. I can get used to the disappearing tabs & such on the top, but for my job I need to switch back & forth between browser and email a lot, and need quick control of the volume bar. The entire bottom tray of icons is covered by Firefox now, and it doesn't have any quick way to make it go away. How do I uncover these?

    The options in that menu now are aside of the home page icon, just click on the menu icon

  • Iframe content in YUI tab disappearing - only in firefox 11

    We have an internal web site developed with YUI which uses the tabview control along with some content provided through an iframe. When the page initially loads the iframe is displayed but when switching between the YUI tabs the iframe content disappears. This stopped working with the upgrade to Firefox 11. It was working with all previous versions including up to 10.0.2.

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • Content tab in Options..."Allow pages to choose their own fonts, instead of my selections above" and it's box disappeared from my options...I need it back...

    I was having problems with some sites having such faded lettering that I couldn't even read them. So I unchecked the box for "Allow pages to choose their own fonts, instead of my selections above". That screwed EVERYTHING up...backgrounds on websites are gone and buttons are hardly recognizable on some pages (including this one). I went back to re-check that box, and that option is no longer in the menu...the whole sentence and it's associated check box are completely gone. I even tried tabbing through to see if I just couldn't see them, and nothing. Absolutely disappeared. I also tried checking and unchecking the same box under the "advanced" button settings and that made a difference on how web pages looked, but did not fix the problem...Help???

    Did you look here?
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    Note that these settings affect background images.
    See also:
    *http://kb.mozillazine.org/Website_colors_are_wrong
    You can also change this by toggling the <b>browser.display.use_document_colors</b> pref on the <b>about:config</b> page.
    *http://kb.mozillazine.org/about:config

  • Menu tabs disappear completely after login and appears if only i press on item node at hire level

    I'm using a Menu Model to Create a Page Hierarchy in my adf application on Jdeveloper 11.1.2.3.0
    it is in three levels level 1 have 2 item nods (home - Help) displayed as buttons
                                level 2   contains 5 item nods about the managements displayed as tabs
                                level 3   is about reports displayed as list
    the point I have apply security in the application using Adf security wizard and i assign roles and users and grants
    all works fine but level 2 tabs disappear completely after login and appears if only i press on Home item node at run time
    I create 2 users (admin) has all roles  and can view all  tabs in level 2 of my navigation and another user (emp)  which can view one Tab page in level 2
    Point 1 --the item nod are rendered according the #{securityContext.regionViewable['oracle.view.pageDefs.RentManagPageDef']}     (EL ) expression language 
    and other item nod render property are set as the same but in the page name definition
    it works fine
    _ Point 2 in my page template I set #{menuInfo.rendered} for renderd property of the command navigation item
    it works fine
    - point 3 I add a  go link in my template to explicit perform log in log out from the app  and redirect the user to the required page
    Destination is
    #{securityContext.authenticated ? "/adfAuthentication?logout=true&end_url=/faces/wearhouse.jsf"  : "/adfAuthentication?success_url=/faces/company.jsf"}
    and its also works fine
    the problem is in the level 2 navigation tabs which is diaper after explicit log in the app directs the user to the correct page successfully
    But the tabs are not rendered till I press on home button on Level 1 navigation it appears and it appears  correctly cording the logged in user validation
    in another words i log in as user (admin) i get directed to the successful log in page  in the link go but  level 2 tabs are invisible or not rendered at all    I click on Home button in level1 navigation the tabs
    become rendered or viewable and i navigate normally
    I log out as admin the level 2 tabs becomes invisible again
    then I log in as (emp)  i get directed to the successful log in page and  level 2 tabs are still  invisible or not rendered
    I click on Home button in level1 navigation the only one tab the user emp authorized to it  gets rendered (appears)
    and its semi correct behavior because this is what I want him to see only
    my tries to find solution
    I tride to use
    #{securityContext.userInRole['division']}
    on the menu node item   I found same behavior level 2 tabs gets hidden till i click on home link at run time
    I tride to use #{securityContext.authenticated} to control item nods rending
    all tabs remains visible and i dont want that ain adition if user clicks on a tab of page he has no authority on it i recive server error
    I read 30.7 Creating a Login Page in the  Fusion Developer's Guide for Oracle Application Development Framework to finde about redirecting user
    and it is using the same as i did from adf tutorials
    I tried to make new navigation app on fast
    maybe i made incorrect change in any stage of my original app
    but I found same behavior
    I tried to set disabled property instead of rendered property the tabs are always rendered   but I got server error when I click on a tab which a user does not authorized
    So I doubt maybe problem in the El or the way I use to control rendering item node
    or there additional step to stop all  the tabs disappear after login
    I hope please some one Help or tell me what i have to read about in the developer guide  or interface developer guide or article on the web
    I'll be gratfule
    I know maybe it is small issue but help me please

    Hi,
    have a look at the sample that comes with this article: Oracle ADF: Security for Everyone It uses resource remissions to authorize panel tabs.
    One test to run is to print the outcome of the security evaluation (e.g. output text) to see what it returns.
    Frank

  • How do I keep my tab groups in my toolbar after restarting...all of a sudden they disappear on restart. I have the restore tabs option on but the groups aren't

    I have 2 problems.......
    1.recently on restarting Firefox, all my tab groups disappear...the tabs there but not in my tab groups.... I have the preference set to open all tabs and can't find anything to say open tabs in groups....can you help? I am working on a Mac desktop version 10.93 with Firefox version 30.0....
    2.also on the Firefox homepage there is no "restore previous session" button.....

    You can check for problems with the sessionstore.js and sessionstore.bak files in the Firefox profile folder that store session data.
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Multiple_profile_files_created
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost and you will have to recreate them (make a note or bookmark them if possible).

  • Drop down menus disappear in a blink of an eye. If I open more than 10 tabs I can't get to them, the arrow takes me back to the first 10. Only in FF, IE works fine. Tried safe mode and no change. It was fine one day and then not the next?

    drop down menus don't work...they disappear in a blink of an eye. This only happens in FF not IE? That includes the menu below! I can't have more than 10 tabs open because the arrow won't take me past 10 it just returns to the first 10???

    Did you ever figure this out? I bought my iPad last week to use in my business as well. I assume you are trying to use alldata? That is where I noticed this same issue. I had problems with identifix working with safari but downloaded a different browser and that works fine. Alldata does not work with either browser. The main difference is that on identifix if there is only one engine selection, it automatically selects the only option and continues to the home page. With alldata you have to make the selection manually even if there is only one option. Honestly if I can't get this to work I am going to return the iPad as it looses a significant amount of usefulness to men

  • Safari window will disappear if dragged from a tab to an external display

    Try opening a Safari window and add a new tab, then drag that new tab to the external display (e.g. Desktop 3) as a new window, it will disappear when you release the drag-and-drop.  I think this is a bug of Safari 7.0 on Mavericks 10.9.

    Two steps work-around:
    1) Drag the tab out to the same display.
    2) Then drag it again to another display. 
    Of course it's a bug.  Please report it to http://www.apple.com/feedback/safari.html.

  • Terminal tabs disappear

    I use always open Terminal with some scripts running in parallel, and specific command history what I need frequently, for that it has great tab functionality. I really like that I can rename them to my processes.
    But it has appeared several times that after some time - I assume after standby cycles, or dock/undock tab row on top of Terminal just disappears. I can still select next/previous tab using menu or shortcuts, and open new tabs, but the tab bar is gone. Tab bar is ok on new Terminal window, but this looses my state (long-running processes, history, folders) from the other Terminal window.
    It seems to be just a bug in the latest Lion, should I post it to bug system?

    You can drag a tab off of the Terminal.app session to create a separate window, if that's what is happening to you marauder37.  Dragging the tabs on the windows back to the tab bar on one Terminal.app window works to restore those, though merging the tabs into a window is easier.  But if the tab bar is disappearing entirely (as the OP describes), then AFAIK there's something odd going on with the settings, the groups, etc.  Certainly worth a try to get the tabs back, but it still seems like there's a bug here.

Maybe you are looking for

  • Update a partioned table dynamically

    Hi All, Parameters: MANDATORY input parameters, FROM_DATE and TO_DATE. OPTIONAL input parameter REVENUE_ID My requirement: To update table "ABC" based on the MANDATORY input parameters, FROM_DATE and TO_DATE. If the optional parameter, REVENUE_ID is

  • Can't see Win PCs on basic network

    Hey, I have a Mac Pro hexacore running OS X 10.6.8 and I can see my other mac pro but not my 4 windows computers.  I can ping them by IP address just fine and I can even map a network drive to one of them by IP address but they do not show up.  The W

  • How to re-download Photoshop Elements 5

    How to re-download Photoshop Elements 5 after I had to reformat my computer and reinstall Windows 7?

  • Need to make large number of items inactive - Inventory

    Hi, Is there an api or something I can use to make a large number of items inactive in Inventory? Thanks Roald

  • Clicking a link opens a new tab

    Hi! I've been using Firefox on my laptop for several months now, and have not had this problem until about an hour ago: Everything I click opens a new tab. And I mean everything. YouTube video? New tab. Trying to view an email? Said email opens in a