Whether or not remember values if switching tabs using ShowOneTab component

I am using ShowOneTab and ShowDetailItem components.
I have 4 ShowDetailItems inside showOneTab (let me say there are tab1,tab2,tab3,tab4)
The default tab is tab1, and I input data, select some values. Then I switch to tab2, do the same thing. Now I switch back (tab1). I'd like to see the values are still there (not the initial values).
Is it possible?
I know that tab content indeed is not accessible if the tab is disclosed.
Any ideas / help will appreciate.
Thanks
Joyce

Hi,
if the values you set are persisted in the model or a session scoped managed bean, then this works fine using EL
Frank

Similar Messages

  • HT1920 I am trying to sign on an old Apple ID through iTunes and it is likely that the email address I used has been closed down. I can not remember the password due to using a new apple ID I frequently use. How else can I retrieve my password or sign in?

    I have an old Apple ID I have been trying to log in to retrieve permission for the songs I have bought for my iTunes. However due to it being an old ID, I have forgotten the password and from what I can remember, the email address I used for security was closed down. I am aware that I can go through security questions and when asked for my D.O.B, I have a feeling I never adjusted my settings in the Apple ID account therefore can not get past that question either.
    Please help!
    Thanks
    Karen

    Hi Kazmania89,
    Welcome to the Support Communities!
    If you require additional assistance with this, click on the link below for guidance:
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Once you are able to gain access to the old Apple ID, this article may be helpful:
    Using your Apple ID for Apple services
    http://support.apple.com/kb/HT4895
    I have purchased music, apps, or books with multiple Apple IDs. How can I get all of this content onto my iOS device?

    First, you need to copy all of your purchased content so it is on the same Mac or PC with iTunes. This computer should be the one you sync your device with. For more information on how to move your content, see these articles:
    Mac:  iTunes for Mac: How to copy purchases between computers
    PC:  iTunes for Windows: How to copy purchases between computers
    Next, authorize your computer to play content with each Apple ID in iTunes. Once your computer is authorized for all your content, it can be synced to your iPhone, iPad, or iPod touch. 
    Cheers,
    - Judy

  • How can I set firefox to stack my tabs one after the other so that I do not have to move through tabs using the buttons at the ends

    when I open multiple tabs which do not fit the tab strip I have to move through tabs using scroll buttons. is there any way way I can stack the tabs on each other or suggest me a add-on which can help me achieve this

    You can consider to access the tabs via the list all tabs button.
    You see the "List All Tabs" button in current Firefox versions if there are that many tabs open that you get the Tab bar scroll buttons appearing.
    * Permanent List-all-tabs Button: https://addons.mozilla.org/firefox/addon/permanent-listalltabs/
    The Custom Tab Width extension adds CSS rules to adjust the tab width settings as set by the browser.tabs.tabMinWidth and browser.tabs.tabMaxWidth prefs on the <b>about:config</b> page.
    * Custom Tab Width: https://addons.mozilla.org/firefox/addon/custom-tab-width/
    You can achieve the same with code in userChrome.css.
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #tabbrowser-tabs ~ #alltabs-button { visibility:visible!important; }
    .tabbrowser-tab[fadein]:not([pinned]) { min-width: 100px !important; max-width: 250px !important; }
    </nowiki></pre>

  • Cannot get mail message keeps me from using a mail account.  Yes I don not remember the password that I used of the user name.  How can I reset this?

    I don not remember the passwd or the user name for an email account.  how do I reset this account?

    OK, hubby figured this out for me.  Apple support were nice people but could not get the answer.  Network Solutions online info was incorrect or incomplete. I do not remember exactly.  However, the email that Network sent was EXACT.   No info as to password reset but they gave the correct port numbers and .....Connection!

  • Firefox 3.6.10 on WinXP spontaneously shuts down without warning after a certain time, whether or not the Internet is in active use, without disrupting or otherwise affecting any non-Internet programs running simultaneously.

    Ffox 3.6.10 on a Compaq Evo N8OOv began spontaneously shutting down w/o warning, closing all Internet applications w/ot affecting the operation of the computer, including non-Internet programs running simultaneously. Avira AntiVir Personal and with Spybot gave no hits suggesting infection.

    See:
    * http://kb.mozillazine.org/Firefox_crashes
    * [[Firefox crashes]]
    Your above posted system details show multiple Java Console extensions.
    You can uninstall (remove) the Java Console extensions and disable the Java Quick Starter extension as you do not need them to run Java applets.
    See http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    See also http://www.java.com/en/download/help/quickstarter.xml - What is Java Quick Starter (JQS)? What is the benefit of running JQS? - 6.0
    Disable the Java Quick Starter extension: Tools -> Addons -> Extensions
    Control Panel -> Java -> Advanced tab -> Miscellaneous -> Java Quick Starter (disable)

  • HT5312 I can not remember what rescue email  i used.  How can I retrieve it?

    I wanted to reset my password for my apple ID but I cant remember my security questions answers.  So I tried to reset it through my rescue email but i never received the email that they sent me.  I am not also sure what was my rescue email.  How can I retrieve it?

    You can go to the Apple ID Security site from http://support.apple.com/kb/HT5699 or call the AppleCare support number from http://support.apple.com/kb/HE57 and ask to speak with the Account Security Team.

  • How to get a component's value inside a repeater using the component's id?

    Hello I'm using a repeater with an httpservice as dataprovider.
    in this repeater, I have a <mx:Panel> containing a <mx:Text>, a <mx:ButtonBar>, and a <mx:HSlider>.
    I need to get the text property of the Text component and the HSlider's value when the slider's value changed. (using the "change=..." property of my HSlider).
    How to do this as I have to know which Panel, HSlider, and which Text has been activated by the slider change?
    Thanks for your help

    This might help you.
    <?xml version="1.0"?>
    <!-- repeater\GetItem.mxml -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
      <mx:Script>
        <![CDATA[
             import mx.controls.Alert;
           [Bindable]
           public var myAC:Array=[1,2,3,4];
           public function getData(event:Event):void{
                     Alert.show(event.currentTarget.text);
                     Alert.show(mySlider[event.target.repeaterIndices].value);
        ]]>
      </mx:Script>
      <mx:Repeater id="myrep" dataProvider="{myAC}">
          <mx:TextInput change="getData(event);" />
          <mx:HSlider id="mySlider" maximum="200" minimum="50" value="67"  snapInterval="1"/>
      </mx:Repeater>
    </mx:Application>

  • Location bar under privacy tab not remembering settings

    Ever since Firefox 16 and 17 versions came out I've always had this issue with the location bar not remembering my option. "When using the location bar, suggest: Nothing." Is what I prefer but if I ever reboot my computer or simply restart firefox over all, it always goes back to the option "History and Bookmarks." I find this very annoying. The reason I waited so long to report this is because I had hoped the next version of Firefox would take care of it. Is there anything I can do to fix this problem or will I have to simply wait till it's fixed by Firefox itself?

    Unfortunately, that didn't help me. I went ahead and uninstalled Firefox completely without saving any customizations and reinstalled it. Seems to work fine now.

  • Cannot switch tabs past a tab viewing a PDF

    When I have a tab open with a PDF in it (using Adobe Acrobat 9.3.0.148 plugin) I cannot switch tabs using Ctrl-Tab and Ctrl-Shift-Tab past that particular tab. Ctrl-W won't close the tab with the PDF in it either. It looks like if you dont click within the PDF document or one of the viewer plugin toolbars etc it will let you tab past, as soon as you click within the PDF it no longer works, even if you change to a different tab and then try going past it again. Using the mouse scroll wheel to scroll through the document does not cause this behaviour to kick in either. Also in this state you cannot use Ctrl-F when you tab onto the PDF tab unless you click on the PDF itself (same goes for cursor keys and page up/down keys). FF2 used to allow you to tab past the PDFs without any issue, i noticed this on 3.5.1 while upgrading to 3.6.3. So its like keyboard focus is lost somewhere between FF and the PDF plugin.
    I remember in FF2 you used to get a faint rectanglular highlight within the tab so you could tell the focus was on the tab not within the page. Thats also gone now.
    I havent been able to find an existing bug specificaly on this issue, or any other potential work arounds. So just want to check before i log a bug, of course this could be an Adobe plugin issue, although it does appear to be linked with how the focus is maintained on components within FF.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)

    This is a known item - a plugin steals keyboard focus - happens with Flash in addition to PDFs (Relevant bug report appears to be [https://bugzilla.mozilla.org/show_bug.cgi?id=93149]

  • Firefox unmaximizes itself when switching tabs in task bar

    When switching tabs using the windows taskbar during an extended online session spanning multiple tabs and windows, the window will unmaximize itself. Switching tabs using the physical tab works correctly. This only occurs with the "Show tabs preview in the Windows Taskbar" opton enabled. Closing all open firefox windows and restarting firefox is the only fix I have found.

    Hi achenbachs630420,
    This is expected behavior for the Windows 7 operating system. However when I have Firefox in fill screen mode for a window and hover over the taskbar the preview will show up and the full screen will remain, and I have the same feature selected, weird?
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings, disables most add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    *In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    *In previous Firefox versions, click on the Firefox button at the top left of the Firefox window and click on ''Help'' (or click on ''Help'' in the Menu bar, if you don't have a Firefox button) then click on ''Restart with Add-ons Disabled''.
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • Cannot switch tabs when external application is active.

    After FF4.0 update, when on websites with Flash (YouTube), or mp3 embed, it is impossible to switch tabs using Cmd+[ or ] or Cmd+(number) without pressing an area outside the embedded portion. When the embedded portion takes up the entire screen, it's impossible to get out of it without using a mouse.

    That's normal on Windows: when a plugin was the last place you clicked, all interaction is sent to the plugin. That wasn't true on version 3.x on the Mac??

  • How to activate price tab in material component

    Dear All,
    Actually i need to assign price for my issuing material, but i am not able get the price tab in material component its only showing general data here i able to assign the quantity. I need help for how to activate the price tab.
    Regards,
    S.Suresh.

    Hi,
    if you take non stock material component ( item category as "N") then system allows you to change the price.
    for this click on material component then, click on Purch.data tab...here you can chnage the price.
    But this is not happening with stock material ( item category as "L").According to me this will not happen with stock material.
    sandeep

  • Basic Excise duty condition value is not captured in in Excise tab at GR

    Dear Experts
    i am facing the problem that, Basic excise duty amount is not appearing / captured in Excise tab, Goods Receipt Screen.
    Please guide me on whether the problem is with Excise master data or excise configuration.

    Dear friend,
    please check the your maintained in fv11 or not for the bed, ecess, and secess, and set offs if  your using the taxinn  procedure
    or in case of your using the taxinj at the time for taxcode for the conditions your maintained condition values or not
    and again in j1id excise rates your maintained or not  check for the particular chapterid of that material
    i think this will help you
    Regards
    Pramod

  • After updating Firefox 6, I seem to not be able to switch to different tabs. When I'm in the tab, it cannot be close, only in the menu. I like Firefox 5 for mac way more.

    Hi,
    having problem with This Firefox 6. When I updated the firefox from 5 to 6. It has not worked good on my computer. When I open a tab, I cannot close easy only when I go to File menu and chose close tab and I'm unable to switch from tab to tab.
    Also I use foxyproxy and before it was so easy to use, before you could see when you are using another proxy. In the past the little blue fox was in the browers area now I can barely find it.
    How can I get it to work like it use too? I muss the old version.

    '''''"Is there some way to turn this off so I can open up the second tab using the same address from the drop down?"'''''
    You can install this Add-on: https://addons.mozilla.org/en-US/firefox/addon/switch-to-tab-no-more/
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Excise base value is not changing in MIGO excise tab for Import  PO scenari

    Dear Gururs,
    We are using MIGO to capture & Post Excise Invoice for our Import PO (PO type ZIMP). the problem is, when we change the qty in MIGO Qty tab, corresponding base value is not getting update in Excise tab. we are not creating the planned cost mIRO directly we do the GRN.
    Please suggest a solution.
    Thanks
    Shital

    Hello Shital  ,
    You are using the India Scenario right?
    The issue can be because you have not assigned a zero tax code to the line item. For India please make the tax code field in PO as mandatory so that the user does not save the PO without atleast a zero tax code.
    Maintain the tax code & proceed. You will see the tab in MIGO.
    Regards
    Plauto

Maybe you are looking for