Refreshing UIelements using Tab

Hi Experts,
I am having four tabs in one page . And each tab is having some uielements placed in ViewContainerUielement.I want to refresh those uielements while clicking different tabs in the same page.
Example:
Tab1 having label and dropdown.
Tab2 having label and dropdown.
After selecting dropdown in Tab1 and clicking to tab2.If i want to return to Tab1 the values are not refreshing.
Please help...
Regards
Nutan

Hi Nutan,
OnSelect event of the tabStrip you can set the current selection of the node binded to 0.
wdContext.node<nodename>().setLeadSelection(0);
and you can clear the value of the input field by using
wdContext.currentContextElement().set<attributename>("");
Regards,
Murtuza

Similar Messages

  • Data fetch from table without Refresh and without using tab key.

    hi Friends,
    I have a problem i want to extract data from table without Refresh into text field without using Tab key. when i'll enter any value in a text field then corressponding value should come in to corressponding textfield without using Tab Key.
    eg. when i enter emp_id 101 in a text field then the first_name and last_name ,adress should come in to corressponding text fields without refresh and without using Tab key.
    How Can I do this.
    Thanks
    Manoj

    Hi Manoj,
    I assume that this is similar to: Data fetch without Refresh rather than Re: Value of one textfield should come into another textfield Without Using TAB ?
    If so, the only change you need to make on the first one is to use "onkeyup" instead of "onchange" in the item's "HTML Form Element Attributes" setting.
    Note, however, that the user must move away from the item at some point (for example, to click a button), so the onchange will be triggered anyway.
    Andy

  • Mouse wheel stops scrolling page, and sometimes refresh does not refresh the correct tab, but the first one in the window.

    I have 27 firefox windows open with a grand total of 141 tabs.
    Some times the input is directed to the wrong window. I will click refresh and it will refresh the first tab in a window, but not the tab I am on. Apparently this also happens when I try and use the mouse wheel or the up and down arrow to scroll a page.
    Some times it works correctly on 1 window, but when I switch to another scrolling stops working.
    Usually rebooting the computer helps, but I should not have to do that.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How to set current row in table after use tab key on inputText

    Hello all,
    My first post .., I'm newbie in ADF and I will try to explain my problem.
    For the moment we use ADF 11g (11.1.1.4), in a jsff page I have a table with an inputText column.
    On the valueChangeListener of the inputText, I invoke a method in a viewScope bean which call an EJB method, make some services in the EJB on the line modified. After that I refresh the VO and the table (because others values on the line have been modified) and reset the focus on the same inputText modified by the user with javaScript because focus was lost after refresh.
    So far, everything works fine.
    When I use the arrow keys to change the selected row in the table, it's work fine (focus is still in the next or previous inputText), but if user try to use tab key to change the current line, the inputText on the next line have the focus but the current row of the table is not changed (I think it's normal).
    My question : how can I change the current row after tab key pressed in this case ?
    I don't know if it's really clear, not easy to explain, don't hesitate to ask more details.
    Thanks in advance.

    Frank Nimphius wrote:
    Hi,
    My question : how can I change the current row after tab key pressed in this case ?
    Use a client event to listen for the keyboard entry and intercept the tab. The use af:serverListener to call the server to set the rowKey on the table and issue a PPR for the table to re-paint
    See sample 11 on http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html#CodeCornerSamples
    to learn about how to use the client listener and server listener
    FrankHi,
    Thanks a lot for your advices, I used the client and server listener
    I used this code on the method call in order to change the selection after key tab pressed, I don't know if it can be easier, but it works.
              if (LOGGER.isDebugEnabled()) {
              LOGGER.debug("START changeSelectedRow");
              RowKeySet oldRowKeySet = myTable.getSelectedRowKeys(); // get oldRowKeySet
              if (oldRowKeySet == null) {
                   if (LOGGER.isDebugEnabled()) {
                        LOGGER.debug("oldRowKeySet is null");
                   return;
              RowKeySetImpl newRowKeySet = new RowKeySetImpl(); // The new RowKeySet use to change the selectedRow
              DCIteratorBinding bindingIterator = ADFUtils.findIterator(MY_ITERATOR);
              bindingIterator.setRangeSize(-1);
              // set the new index of the current row.
              int index = bindingIterator.getCurrentRowIndexInRange();
              if (index < bindingIterator.getAllRowsInRange().length - 1) {
                   index++;
              bindingIterator.setCurrentRowIndexInRange(index);
              // get the current row after changed the index
              Row currentRow = bindingIterator.getCurrentRow();
              if (currentRow != null) {
                   ArrayList nextLst = new ArrayList(1);
                   nextLst.add(currentRow.getKey());
                   newRowKeySet.add(nextLst);
                   // set the new selectedRow
                   myTable.setSelectedRowKeys(newRowKeySet);
                   SelectionEvent selectionEvent = new SelectionEvent(oldRowKeySet, newRowKeySet, myTable);
                   selectionEvent.queue();
                   AdfFacesContext.getCurrentInstance().addPartialTarget(myTable);
              if (LOGGER.isDebugEnabled()) {
                   LOGGER.debug("END changeSelectedRow");
    Best Regards
    Benjamin

  • After using Tab Groups earlier today, now anytime I close FF with more than 1 tab open, FF does NOT ask me to confirm before closing

    After using Tab Groups earlier today, now anytime I close FF with more than 1 tab open, FF does NOT ask me to confirm before closing. FF always has asked me to confirm in the past and no settings were changed prior to trying the Tab Groups. Then when I reopen FF all the tabs that I had open are still there. I've tried refreshing FF and clearing history but that didn't work. It's almost as though FF thinks the window and tabs I have open are a tab group and it won't let me get rid of that group. How do I stop the Tab Groups now that I got them? Or is there something else going on? None of this was happening until I played with the Tab Groups this morning. I was curious what it was --- that's going to get me killed one of these days lol.

    Thanks. Somehow the "Show my windows and tabs" box had gotten checked. I know I didn't check that box and the "Warn me when closing multiple tabs" box has always been checked. Like I said, it was all working fine until I tried the tab groups so I'm wondering if maybe that checks the "Show my windows and tabs" box by default?
    Anyway, it's fixed now. Thanks so much!

  • Using tab-strip

    Hi all...
    can any body tell me how to use tab-strip control in screens.
    Thanks a lot...

    hi
    Check the coding..
    REPORT ZKA_TABSTRIP .
    TABLES: ZKA_EMP,ZKA_COM.
    CONTROLS: TS TYPE TABSTRIP.."""""""""Declare
    DATA: SCREENNO(4) TYPE N.  """""Screen no
    CALL SCREEN '0003'. """""""""""""""""Call the screen
    *& Module STATUS_0001 OUTPUT
    text
    MODULE STATUS_0001 OUTPUT.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    IF SCREENNO IS INITIAL.
    TS-ACTIVETAB = 'EMP'.
    SCREENNO = '0002'.
    ENDIF.
    ENDMODULE. " STATUS_0001 OUTPUT
    *& Module USER_COMMAND_0001 INPUT
    text
    MODULE USER_COMMAND_0001 INPUT.
    IF SY-UCOMM = 'EMP'.
    TS-ACTIVETAB = 'EMP'.
    SCREENNO = '0002'.
    ELSEIF SY-UCOMM = 'COM'.
    TS-ACTIVETAB = 'COM'.
    SCREENNO = '0003'.
    ENDIF.
    ENDMODULE. " USER_COMMAND_0001 INPUT
    *& Module USER_COMMAND_0002 INPUT
    text
    MODULE USER_COMMAND_0002 INPUT.
    IF SY-UCOMM = 'DISPLAY'.
    SELECT SINGLE * FROM ZKA_EMP WHERE EMPNO = ZKA_EMP-EMPNO.
    ELSEIF SY-UCOMM = 'SAVE'.
    INSERT ZKA_EMP.
    ELSEIF SY-UCOMM = 'REFRESH'.
    CLEAR ZKA_EMP.
    ELSEIF SY-UCOMM = 'EXIT'.
    LEAVE PROGRAM.
    ENDIF
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0100.
       call SUBSCREEN ts4 INCLUDING sy-repid SCREENNO ."""""""""""Specify the screen no
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_0100.
       call SUBSCREEN ts4.
    thanks
    Dharma

  • When using tabbed browsing, if I click to open a new tab, why will it not automatically load my homepage in the new tab instead of a blank window?

    I use tabbed browsing with the tab bar visible at all times so I can click on a new tab when convenient.Why can my homepage not load automatically on that newly opened tab insted of a blank screen with a search bar saying "you've opened a new tab".........well yeah. I have looked through the options and cannot find anything to open a new tab with the homepage. Is it possible? Have I missed it? If it's not possible, could you make it so?
    == This happened ==
    Every time Firefox opened
    == I opened a new tab.....see above

    The default is to load a blank page.
    Try one of these add-ons:
    http://sogame.awardspace.com/newtaburl/
    https://addons.mozilla.org/en-US/firefox/addon/777

  • Open several PDFs in the same Reader window using tabs for each document

    How do I open several PDFs in the same Reader window using tabs for each document?  I'm using Reader 11.0.03 and Windows 7.  

    That would be a nice feature!  Suggest it at https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform - hopefully it will make it into Reader XII.

  • In past versions of ff I have used Tab Renamizer add-on to allow me to rename the main tab in each profile. Does anyone know of any firefox add-ons that have a similar features to Tab Renamizer?

    I run several firefox profiles at the same time. In the past I have used Tab Renamizer to label the main tab in each profile. I like this because then I can tell them a part from the drop-down list in win 7 when switching between profiles. The new version of firefox is not supported by this add-on. Does anyone know of any firefox add-ons that have a similar feature?
    Using firefox 7.0.1

    core-el, i don't see the advantage of that or i can't figure out how i'm supposed to use it. for starters, i have to click the mouse in order to get "add bookmark here" to open, which is no different than clicking on the star in the location bar, or right-clicking on the page. there are also options in the bookmarks toolbar, but they all require clicking the mouse & holding down the right button, etc.
    my goal is to use keystrokes only. typing on the keyboard, using both hands, using the space bar & my left pinky finger to tab over are all painless routines for me. as soon as i have to take my fingers off the keyboard & use the mouse, the pain begins.
    as i said, in older versions of firefox, all i had to do to bookmark a page was click ctrl>d, then tab over & arrow down, when appropriate, to find the folder & add the bookmark. for me, as a touch-typist whose speed is between 60 & 80 wpm, this is lightning fast.
    if i have this wrong, please correct me. i just see it as more mouse clicks that don't save me time or pain.

  • Error using tabs in Web Dynpro application

    Hi all,
    I am working on a web Dynpro application where I want to use "tabs" to display different vendor details, basically I need two tabs one for header data, one for address data. What I did is I created a group and there created the element for the user to enter the vendor number and also created a button and binded it with the BAPI, now I created a tab using tabstrip and then inserting the tab and adding the element to the tab (in my case i m using the table type), once I finish this and try to do the syntax chek i am getting this error:  "ACC: Element "TAB" does not have a header"
    Can you please help me with this?
    Thanks,
    Rajat

    Looks like i was missing some step... I deleted everything and then re created and this time it works.

  • How to create and use tabs for WD views

    Hi,
    I have created two views. A button click  from onw view leads to the second view and vice versa.
    I would like to add tabs to the two views, in a way that when pressing the button on the first view - the second one will open, and the tabs of both views will be seen, in a way that will enable me to navigate between the views using the tabs.
    Is this possible to do? or must I implement one view with a tab strips? (whcih means - rewriting the secod view into the first...)
    Thanks,
    Oren.

    Hi
    There is no need to use inbound outbound plugs and navigation links when you use Tab Strip
    You have a tab strip control in which you inserted two tabs
    each tab contains transparent container which intern contains ViewContainerUIElement, so your Outline looks like this
    TabStrip[TabStrip - Child]
    --Tab[Tab - Child]
    Tab_Content[TransparentContainer - Child]
    viewContainerUIElement[ViewContainerUIElement - Child ]
    Tab_header
    --Tab1[Tab - Child]
    Tab1_Content[TransaparentContainer - Child]
    viewContainerUIElement[ViewContainerUIElement - Child]
    Tab1_header
    So you have two ViewContainerUIElements in Two Tabs, you need not write any code to navigate if you select second tab second view is displayed and if you select first tab first view is displayed.
    Regards
    Abhimanyu L

  • How to change gtk theme dialog box button appearance when using tab?

    Hi,
    I'm using candido as my gtk theme and have noticed that when a dialog box pops up (Yes / No), it is extremely difficult to tell which option is highlighted. How do I change this appearance? I searched through the gtkrc and even used gimp to manipulate the images used via trial and error to see if I found one that worked. Can someone familiar with gtk themes tell me which gtkrc or image to alter to affect this appearance?
    I use tab to select my option a ton and hate not being able to tell what I'm looking at.
    For reference,
    - here is the current look (can you tell which one is highlighted? It's "Cancel" -- just slightly bigger or a fine line around it) LINK
    - here is the gtkrc if that helps? LINK
    For one more point of clarification, I'm not talking about the button appearance on mouseover. I have identified that the button-prelight.png file changes that. I specifically am talking purely about a dialog popping up and then using the tab key alone to highlight through the options. I really like this theme, but this one thing drives me crazy. This appearance changes when I select different themes with lxappearance, so I've narrowed it down to being a gtk-theme issue, not my openbox theme or icon set.
    Many thanks!
    Last edited by jwhendy (2011-02-02 18:11:10)

    HI,
    Debug the program after you press the CANCEL button , you will get where the conrol is flowing , And instead of using
    Leave to screen '910'          use               Leave to screen 0.
    Regards,
    Madhukar Shetty

  • My browser suddenly always opens on the page it was on when it was shut down last and uses tabs even though I have them turned off. I have tried reinstalling.

    I have my browser set to open on comcast.net webpage and to never use tabs. I have been using firefox for years and am very familiar with it. Suddenly it has started opening on the last page it was on when shut down, and has started using tabs. When I delete Firefox from my computer, it still remembers all my settings. I had this problem once before years ago and ended up having to wipe my entire drive to fix it. I would like to avoid a drive wipe this time. I need to know how to get ALL of the browsers information deleted from the registry so I can get a truly fresh install. And yes, I have tried all the normal avenues and am pretty computer savvy. Please help before I go nuts. I am running the most recent version, but going back to older versions didn't help either. Thanks.
    Bob Smith

    Another possibility is that Firefox keeps crashing during shutdown, and so Firefox is recovering from a crash every time. To diagnose this, you can change how Firefox recovers from a crash: instead of restoring the previous session, it will show a list of what you had open so you can be selective or bypass it altogether.
    Here's where you change that:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box above the list, type or paste '''sess''' and pause while the list is filtered
    (3) Double-click the '''browser.sessionstore.max_resumed_crashes''' preference and change the value from 1 to 0 and OK that.
    ''Note: Please don't change any other sessionstore preferences without researching them first.''

  • Is it possible to use tabs to right align text in Muse, as you can in InDesign?

    Can I use tabs to right align text in Muse, as you can in InDesign?
    I have a beauty treatment followed by a price and I want to right align the price, keeping the treatment on the left of the text box.
    Thank you!

    For what would typically be a two column tab stop layout, I'd generally use inline text frames and the Wrap panel.
    Put the price in it's own text frame. Then cut and paste the text frame BEFORE the item name so it's an inline text frame within the text frame containing the descriptions.Using the Wrap panel set it to float to the right. Then select it and set the right offset so it floats outside the right side of the original text frame.
    Start with this.
    Cut and paste the text frame at the start of the item paragraph.
    Choose the third icon in the Wrap panel to cause the item to float to the right of the text frame.
    Turn off the lock for the 4 wrap offset values.
    Adjust the right offset to a negative value so the item is outside the text frame to the right (to wherever you want it).
    Repeat the same steps above for the other items.
    Note that once it's set up this way you can freely edit the descriptions or change the width of the original text frame and the prices will adjust accordingly. This will also result in things lining up in the browser even if the text layout engine of a specific browser line breaks the text differently.
    This approach is tedious, but the end result will continue to line up as you make changes in Design view and will line up in every browser/OS/device.
    Someday Muse will support tables, which would be the more natural way to achieve this style of layout on the web. Until then, inline items with wrap is usually the best approach for this type of two column layout.

  • Efficient way to use TAB item

    Most ofter, we are using TAB item cat for our order, one so map to one po, it is the simplest scenario, but sometime, we have inventory, we would like to use the in ventory first, then issue po to purchase item. I should said, I want to item check the available first, then the remain item will issue PO for purchase. Thanks!

    Hello Friend,
    In that case assign a approval process and workflow to your order types.So when ever an order is saved it will be locked for further activities and unless and until it is released manually by the concerned officer then only it will trigger the future actions. Through workflow the person responsible will get the notification for approval.

Maybe you are looking for

  • Connecting/Disconnection from the Dock

    Greetings, An 'operational' question here. With my old (non-mac) MP3 player, I would just leave the USB cable plugged into the port at the back it the iMac display and connect and disconect the player from the free end of the cable when necessary. Ca

  • All of my toolbars are gone and I don't know how to get them back

    they are all gone == This happened == Not sure how often == I opened Firefox == == User Agent == Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC

  • HT201468 Boot Camp on external drive?

    Is it possible to install and run Boot Camp (Windows XP) from an external drive?  I originally had Boot Camp on a separate partition on my iMac HD, but the partition filled pretty quickly.  I want to install Boot Camp on an external drive to avoid re

  • Eexchange rate is picked up in assessment line items

    Hi Friends, Our controlling area currency is USD and object currency is AUD. When we are doing assessment(T code GJF5-realted to JVA), the line item generated from the execution of assessment is picking up some rate of exchange which we are not able

  • Change of Movement type for Return delivery of Goods Issue doc in config

    Hi SAP Gurus, I am doing return delivery of goods issue document.then the system automatically pick the movement type Like Example i am doing return delivery for Goods issue 201,the system should pick 202 but instead of 202 its picking 902 movement t