Sub Tab is loosing focus

Hi All,
I have a Sub Tab Layout with 5 tabs in it. Each sub tab has an advanced search region.
The page loads correctly with focus on the first tab. I am facing a problem after switching between tabs and any event (Go / Add) is fired on the page. If the Go or Add button of the Advanced search region is clicked, The tab with the greatest index that was accessed is displayed to the user with the First tab being highlighted.
Eg:
If when the page loads i switch between the first three tabs of the five without triggering any event(just switching between the tabs) an I get back to the first tab and run a search or add a new search criteria, The tab displayed to the user is the 3rd one with the first tab being highlighted.
Not sure what is goin on or why this is happening. went through some threads and have implemented the following code in the process request..
OASubTabLayoutBean subTab =
(OASubTabLayoutBean)webBean.findChildRecursive("MainRN");
subTab.setSelectedIndex(pageContext,"CustomSnltyHdrRN");
OALinkBean link = (OALinkBean)subTab.findChildRecursive("LinkCustomSeas");
link.setSelected(true);
"CustomSnltyHdrRN" is my first tab region ID &
"LinkCustomSeas" is the link ID for the first Tab.
How can I resolve this? .. Kindly help ..
Thanks and Regards,
Dean

Many ways to do this but I actually suggest a different path
then trying to concern yourself with the FocusManager.
You say it submits to a MySQL server. Are you using a
Middleware server or submitting directly to a local server.
If you are making webservice or remoteObject calls then you
can send the ID back in the return and have that trigger another
call to get the data and place it into your dataProvider. Or even
better might just want to have it send that record back along with
the id.
If you are not using any type of Middleware I would suggest
you do. Otherwise you may just want to write a stored procedure
into the MySQL Database so that when the submission happens it
inserts it and then automatically performs a select on that record
and sends the query back.
This way the same script that submits the form can be waiting
for the returned data to inject into a dataProvider that your
second Module is ready to use.
The dataProvider could simply be a valueObject or you could
use the command pattern to pass data back and fourth.

Similar Messages

  • ADF AutoSubmit True column Loosing Focus after hitting Tab

    Hi,
    I am on 11.1.2.2.0. I have implemented af:table component and inside table on few columns I have autoSubmit="true" immediate="true" . After entering values into those columns when I hit Tab (To go to next field in table) , it goes to next field and looses focus. Is there any work around or fix to overcome this issue ?
    Thanks and Regards,
    Jit

    Hi,
    Thanks for the links. My requirement is to set focus inside af:table. Inside table I have say 5 fields.
    3rd Field is LOV and 4th fields is Text. After entering LOV info in Field3 focus should go to field4(which is inputText).
    I tried
    Frank's Blog
    https://blogs.oracle.com/jdevotnharvest/entry/how_to_programmatically_set_focus
    AMIS Blog
    http://technology.amis.nl/2008/01/04/adf-11g-rich-faces-focus-on-field-after-button-press-or-ppr-including-javascript-in-ppr-response-and-clientlisteners-client-side-programming-in-adf-faces-rich-client-components-part-2/
    This works for ADF Form entry. When I tried implement this in table the field id(eg it4) is not picked.
    I found other blog for where it is mentioned field id dwill be different in case of Table.
    http://www.bartkummel.net/2009/11/oracle-adf-set-focus-to-input-field-in-data-table/#respond
    Do you have any idea how to get Table id or help in building this field id in Table ?
    Thanks and Regards,
    Jit

  • JTabbedPane loosing focus when switching tabs

    When there are tiered JTabbedPanes and focus in one of the children and the tabbed is switched focus will go to the first component in the frame.
    Is there a work around to keep the focus at least on the jtabbedpane?
    Is this a know bug? anyone heard of this before?
    Googling: JTabbedPane focus didn't bring up anything helpful... is there something else I should be searching under?
    Here is an example:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.FocusEvent;
    import java.awt.event.FocusListener;
    public class TabPaneTest extends JFrame {
        public TabPaneTest() {
            JButton focusStealer = new JButton("Look at me!");
            focusStealer.addFocusListener(new FocusListener() {
                public void focusGained(FocusEvent e) {
                    System.out.println("I TOOK FOCUS! W00t!");
                public void focusLost(FocusEvent e) {
                    //To change body of implemented methods use File | Settings | File Templates.
            JTabbedPane tabbedPane = createTabbedPane(0);
            getContentPane().add(focusStealer, BorderLayout.NORTH);
            getContentPane().add(tabbedPane, BorderLayout.CENTER);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            setSize(300, 200);
            setLocation(400, 200);
            setVisible(true);
        private JTabbedPane createTabbedPane(int deep) {
            deep++;
            JTabbedPane tabs = new JTabbedPane();
            for (int i = 0; i < 4; i++) {
                if (deep < 4) {
                    tabs.add(i + ":" + deep + " - Focus", createTabbedPane(deep));
                } else {
                    tabs.add(i + ":" + deep + " - Focus", new JTextField());
            return tabs;
        public static void main(String[] args) {
            new TabPaneTest();
    }

    When there are tiered JTabbedPanes and focus in one of the children and the tabbed is switched focus will go to the first component in the frame.
    Is there a work around to keep the focus at least on the jtabbedpane?
    Is this a know bug? anyone heard of this before?
    Googling: JTabbedPane focus didn't bring up anything helpful... is there something else I should be searching under?
    Here is an example:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.FocusEvent;
    import java.awt.event.FocusListener;
    public class TabPaneTest extends JFrame {
        public TabPaneTest() {
            JButton focusStealer = new JButton("Look at me!");
            focusStealer.addFocusListener(new FocusListener() {
                public void focusGained(FocusEvent e) {
                    System.out.println("I TOOK FOCUS! W00t!");
                public void focusLost(FocusEvent e) {
                    //To change body of implemented methods use File | Settings | File Templates.
            JTabbedPane tabbedPane = createTabbedPane(0);
            getContentPane().add(focusStealer, BorderLayout.NORTH);
            getContentPane().add(tabbedPane, BorderLayout.CENTER);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            setSize(300, 200);
            setLocation(400, 200);
            setVisible(true);
        private JTabbedPane createTabbedPane(int deep) {
            deep++;
            JTabbedPane tabs = new JTabbedPane();
            for (int i = 0; i < 4; i++) {
                if (deep < 4) {
                    tabs.add(i + ":" + deep + " - Focus", createTabbedPane(deep));
                } else {
                    tabs.add(i + ":" + deep + " - Focus", new JTextField());
            return tabs;
        public static void main(String[] args) {
            new TabPaneTest();
    }

  • How a custom control is advised it gains or looses focus?

    Hey, at least I have a question to ask, instead of answering them... :-)
    Actually, I already asked it in another thread, in one of my answers: [onMouseClicked Event Is Failing To Fire|http://forums.sun.com/thread.jspa?threadID=5391008] but I fear it is lost in a rather lengthly message, so I ask it in its own thread, because I was to bring the attention of knowledgeable people (hello Sun people! :-D).
    The question is simple: In a custom control in JavaFX 1.2, with skin and behavior, how a control is advised when it gains or looses focus?
    The purpose is to let the skin to change the look of the component upon these events, like it is done for standard controls (eg. putting a border around the focused control).
    If the control is clicked, you know (unless it is disabled) that it will have the focus. But I see no way to see the lost of focus, nor when we gain (or loose) it with Tab/Shift+Tab (if it has focusTraversable to true).
    I looked for onFocus() and onBlur() events (or similar), but found nothing. No mixin, nothing related in javafx.scene.input.TextInput and friends, etc.
    I explored the Web but since 1.2 is still new, I found not much information. Only a fragment of source code in [Re: Further location optimizations|http://markmail.org/message/gsevtlkeq45rrdun] where I see scene.getFocusOwner() but this one isn't easily usable because it is package protected (and it is not an event, anyway).
    A possible solution would be to have a timer to inspect the state focused of the nodes, but it is so kludgy I didn't even tried to implement it!
    I hope I just missed the information... If there is no easy/official/working way in 1.2, I hope this will be corrected for next version!

    That's a very good remark, handling of focus highlight shouldn't be done at control (model)'s level. I hesitated to put it in behavior, but it feels more natural in the skin, so I did as you suggested.
    you'll need an interface, and JavaFX does not do thatYou have mixins. But I didn't used them here.
    focused variable never is set to trueHave you included the
    public override var focusTraversable = true;
    line?
    To support multiple skins, my control becomes:
    public class StyledControl extends Control
      // Data related to the control (the model)
      public var count: Integer;
      public override var focusTraversable = true;
      init
        if (skin == null)  // Not defined in instance
          // Define a default styler
          skin = ControlStyler {}
      package function Incr(): Void
        if (count < 9)
          count++;
    }quite bare bones (I intendedly keep the model simple).
    Note I still define a default skin in case user doesn't provide it: they shouldn't care about this detail unless they want to change it.
    I defined an abstract default skin, implementing most variables (particularly the public ones that can be styled) and the focus change:
    public abstract class DefaultControlStyler extends Skin
      //-- Skinable properties
      public var size: Number = 20;
      public var fill: Color = Color.GRAY;
      public var textFill: Color = Color.BLACK;
      public var focusFill: Color = Color.BLUE;
      package var mainPart: Node; // Decorations (id, focus) are kept out of layout
      package var focusHighlight: Node;
      package var idDisplay: Text;
      package var valueDisplay: Text;
      init
        behavior = ControlBehavior { info: bind control.id }
        node = Group
          //-- Behavior: call controller for actions
          onMouseReleased: function (evt: MouseEvent): Void
            (behavior as ControlBehavior).HandleClick(evt);
      postinit
        // Once defined by the sub-class, insert into the node
        insert [ mainPart, idDisplay, valueDisplay ] into (node as Group).content;
      public abstract function ShowIncrement(): Void;
      var hasFocus = bind control.focused on replace
        if (hasFocus)
          ShowFocus();
        else
          HideFocus();
      // Default handling of  focus display, can be overriden if needed
      public function ShowFocus(): Void
        insert focusHighlight into (node as Group).content;
      public function HideFocus(): Void
        delete focusHighlight from (node as Group).content;
      public override function contains(localX: Number, localY: Number): Boolean
        return mainPart.contains(localX, localY);
      public override function intersects(localX: Number, localY: Number,
          localWidth: Number, localHeight: Number): Boolean
        return mainPart.intersects(localX, localY, localWidth, localHeight);
    }and the concrete skins implement the mainPart, idDisplay, valueDisplay, focusHighlight nodes, override ShowIncrement with an animation, override getPrefWidth and getPrefHeight to set to mainPart size and might override ShowFocus or HideFocus (if we want it behind mainPart for example).
    The behavior is:
    public class ControlBehavior extends Behavior
      public var info: String; // Only for debug information...
      // Convenience vars, to avoid casting each time
      var control = bind skin.control as StyledControl;
      var csSkin = bind skin as DefaultControlStyler;
      public override function callActionForEvent(evt: KeyEvent)
        println("{info}{control.count}: KeyEvent: {evt}");
        if (evt.char == '+')
          Incr();
      package function HandleClick(evt: MouseEvent): Void
        control.requestFocus();
        Incr();
      function Incr(): Void
        control.Incr();
        println("{info}: Ouch! -> {control.count}");
        csSkin.ShowIncrement();
    }and knows only the abstract default skin (to apply feedback of user input to skin).
    I use it as follow:
    Stage
      title: "Test Styling Controls"
      scene: Scene
        width:  500
        height: 500
        content:
          HBox
            translateX: 50
            translateY: 100
            spacing: 50
            content:
              StyledControl { id: "Bar" },
              StyledControl { /* No id */ layoutInfo: LayoutInfo { vpos: VPos.BOTTOM } },
              StyledControl { id: "Foo" },
              StyledControl { id: "Gah" },
              StyledControl { id: "Bu", skin: AltCtrlStyler {} },
        stylesheets: "{__DIR__}../controlStyle.css"
    }BTW, I tried layoutY: 50 in place of the layoutInfo definition, but the control remained at default place. Am I reading incorrectly the ref. or is this a bug?

  • Firefox looses focus - titlebar at top goes grey - if a new website is visited.

    If, say, the URL of a web site is put in the address bar and Firefox opens it in a new tab in the normal way then the firefox window looses focus, the window's bar at the top greys out. I have to click the page to restore focus.
    This has a much greater irritation value than it may sound.
    Same thing with clicking a website from, say, google.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    *Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Can not update tab if its not the default sub-tab.

    Can not update tab if its not the default sub-tab.
    JDeveloper Version 10.1.2.1.0 (Build 1913)
    Hi. I have a problem with a “lovOpenWindowAction”
    The UIX is created with a master UIX and have several sub-tab that is included as UIX-pages.
    The lovOpenWindowAction lies in the included UIX-page
    The sub-tab I have a problem with has a table with users. Then I have a “Create New” button than I want to click on and select a new user that should be included in the table in the sub-tab.
    When I click on the button I open a LOV-window. Here I select the user that I want to add.
    In the LOV Action-class I save my new value in the database. Then in the method “onLovUpdate” I update the iterator with the new values from the database.
    But in my GUI the subtab is not updated until I click on it.
    But if I make the subtab the default subtab then it all works just fine and the GUI is updated directly.
    Here is the code for the tableAction in the subtab. This code lies in an included UIX-page. Target is the table id.
    <tableActions>
    <button text="Create New" id=" createNewRollperson" accessKey="N">
    <primaryClientAction>
    <lovOpenWindowAction destination="FiskeRollpersonerLOV.do"
    source=" createNewRollperson "
    targets="joinedRollpersfiskeer message"/>
    </primaryClientAction>
    </button>
    </tableActions>
    Here is some code from the master UIX-page
    <subTabLayout id="flikar">
    <subTabs>
    <subTabBar selectedIndex="${ui:defaulting(param.index,0)}">
    <contents>
    <link id="resorFlik" text="Resor"
    disabled="${sessionScope.fiske.id == null}"
    selected="${(param.source == 'resorFlik') or empty param.source}">
    <primaryClientAction>
    <firePartialAction event="changeTab" targets="flikar globalHeader">
    <parameters>
    <parameter key="source" value="resorFlik"/>
    </parameters>
    </firePartialAction>
    </primaryClientAction>
    </link>
    <link id="rollpersonerFlik" text="Rollpersoner"
    disabled="${sessionScope.fiske.id == null}"
    selected="${param.source == 'rollpersonerFlik'}">
    <primaryClientAction>
    <firePartialAction event="changeTab" targets="flikar globalHeader">
    <parameters>
    <parameter key="source" value="rollpersonerFlik"/>
    </parameters>
    </firePartialAction>
    </primaryClientAction>
    </link>
    </contents>
    </subTabBar>
    </subTabs>
    <contents>
    <switcher childName="${param.source}"
    defaultCase=”ResorFlik">
    <case name="resorFlik">
    <include node="${ctrl:parsePage(uix, 'includes/ResorFlik')}"/>
    </case>
    <case name="rollpersonerFlik">
    <include node="${ctrl:parsePage(uix, 'includes/FiskeRollpersonerFlik')}"/>
    </case>
    </switcher>
    </contents>
    </subTabLayout>
    What am I missing?? I can’t have this subtab as the default subtab! Please help me with a solution!

    hi,
    Change the condition type to manual entry.
    or
    for example delivery costs will be different at the time of PO and actual delivery costs then at the time of invoice we select planned delivery costs and settle them first with the actual delivery cost.
    Thanks & Regards,
    Kiran

  • Unable to remove sub-tab from portal page

    Hi,
    Get the following error when trying to remove a sub-tab from one of our portal pages;
    An unexpected error occurred: User-Defined Exception (WWC-44082)
    An unexpected error occurred: User-Defined Exception (WWC-44082)
    Error while deleting page. (WWC-44130)
    An unexpected error occurred: ORA-20100:
    ORA-06512: at "PORTAL.WWSBR_STDERR", line 437
    ORA-06512: at "PORTAL.WWV_THINGDB", line 4021
    ORA-01403: no data found
    ORA-01403: no data found (WWC-44082)
    An unexpected error has occurred (WWS-32100)
    ORA-1403: ORA-01403: no data found
    ORA-01403: no data found (WWC-36000)
    Unexpected error encountered in wwsec_api.remove_group_acl (ORA-01403: no data found
    ORA-01403: no data found) (WWC-41417)
    In advanced options for the tab, 'Inherit Access Settings From The Page' is selected.
    Under page access settings, the 'From page template' option is selected.
    Any ideas?
    Cheers,
    Chris

    Please report this problem to Oracle Support. This is not normal behaviour.

  • Window looses focus seemingly at random

    This is very frustrating.  Whenever I am working in any application, the active window auto-magically looses focus.  I don't have a lot running by way of background processes and the computer is fairly new and running all latest software.  I can't figure out why.  Hoping someone from the Apple community can help out...
    Here is detailed information about my MacBook Pro:
    EtreCheck version: 1.9.11 (43) - report generated May 30, 2014 at 9:24:49 AM CDT
    Hardware Information:
              MacBook Pro (15-inch, Mid 2012)
              MacBook Pro - model: MacBookPro9,1
              1 2.3 GHz Intel Core i7 CPU: 4 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: (null)
              NVIDIA GeForce GT 650M - VRAM: 512 MB
    System Software:
              OS X 10.9.3 (13D65) - Uptime: 0 days 17:58:47
    Disk Information:
              Crucial_CT240M500SSD1 disk0 : (240.06 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        disk0s2 (disk0s2) <not mounted>: 239.2 GB
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-8A8 
    USB Information:
              Logitech USB Receiver
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Computer, Inc. IR Receiver
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Configuration files:
              /etc/sysctl.conf - Exists
    Gatekeeper:
              Anywhere
    Kernel Extensions:
              [kext loaded] com.Logitech.Control Center.HID Driver (3.9.1 - SDK 10.8) Support
              [kext loaded] com.Logitech.Unifying.HID Driver (1.3.0 - SDK 10.6) Support
              [kext loaded] com.epson.driver.EPSONProjectorAudio (1.30 - SDK 10.4) Support
              [kext loaded] com.pgp.iokit.PGPdiskDriver (10 - SDK 10.8) Support
              [kext loaded] com.pgp.kext.PGPnke (1.1.3 - SDK 10.8) Support
              [kext loaded] com.plantronics.driver.PlantronicsDriverShield (4.3 - SDK 10.8) Support
              [not loaded] com.symantec.kext.SymAPComm (12.2f1 - SDK 10.6) Support
              [kext loaded] com.symantec.kext.internetSecurity (5.2f1 - SDK 10.6) Support
              [kext loaded] com.symantec.kext.ips (3.5f1 - SDK 10.6) Support
              [kext loaded] com.symantec.kext.ndcengine (1.0f1 - SDK 10.6) Support
    Startup Items:
              ciscod: Path: /System/Library/StartupItems/ciscod
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.barebones.authd.plist Support
              [running] com.cisco.anyconnect.vpnagentd.plist Support
              [loaded] com.google.keystone.daemon.plist Support
              [running] com.manageengine.desktopcentral.dcagentservice.plist Support
              [loaded] com.manageengine.desktopcentral.dcagentupgrader.plist Support
              [loaded] com.microsoft.office.licensing.helper.plist Support
              [loaded] com.oracle.java.Helper-Tool.plist Support
              [loaded] com.oracle.java.JavaUpdateHelper.plist Support
              [loaded] com.pgp.framework.PGPwde.plist Support
              [running] com.pgp.wde.pgpwded.plist Support
              [loaded] com.symantec.liveupdate.daemon.ondemand.plist Support
              [loaded] com.symantec.liveupdate.daemon.plist Support
              [not loaded] com.symantec.sep.migratesettings.plist Support
              [running] com.symantec.sharedsettings.plist Support
              [running] com.symantec.symdaemon.plist Support
              [not loaded] com.teamviewer.teamviewer_service.plist Support
              [loaded] com.tunnelbear.mac.tbeard.plist Support
              [loaded] com.wuala.WualaFS.KextLoaderHelper.plist Support
              [loaded] org.macosforge.xquartz.privileged_startx.plist Support
    Launch Agents:
              [loaded] com.cisco.anyconnect.gui.plist Support
              [loaded] com.google.keystone.agent.plist Support
              [running] com.Logitech.Control Center.Daemon.plist Support
              [not loaded] com.maintain.PurgeInactiveMemory.plist Support
              [not loaded] com.maintain.Restart.plist Support
              [not loaded] com.maintain.ShutDown.plist Support
              [running] com.maintain.SystemEvents.plist Support
              [loaded] com.oracle.java.Java-Updater.plist Support
              [running] com.pgp.pgpengine.plist Support
              [running] com.symantec.uiagent.application.plist Support
              [not loaded] com.teamviewer.teamviewer.plist Support
              [not loaded] com.teamviewer.teamviewer_desktop.plist Support
              [running] jp.co.canon.SELPHYCP.BG.plist Support
              [failed] org.gpgtools.gpgmail.enable-bundles.plist Support
              [loaded] org.macosforge.xquartz.startx.plist Support
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist Support
              [loaded] com.citrixonline.GoToMeeting.G2MUpdate.plist Support
              [loaded] com.valvesoftware.steamclean.plist Support
    User Login Items:
              UNKNOWN
              Plantronics
              iTunesHelper
              Quicksilver
              Dropbox
              aText
              Box Sync
    Internet Plug-ins:
              JavaAppletPlugin: Version: Java 7 Update 55 Check version
              nplastpass: Version: 2.5.5 Support
              Default Browser: Version: 537 - SDK 10.9
              F5 SSL VPN Plugin: Version: 7080.2013.0319.1 Support
              AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 Support
              FlashPlayer-10.6: Version: 13.0.0.214 - SDK 10.6 Support
              Silverlight: Version: 5.1.30317.0 - SDK 10.6 Support
              Flash Player: Version: 13.0.0.214 - SDK 10.6 Support
              QuickTime Plugin: Version: 7.7.3
              SharePointBrowserPlugin: Version: 14.4.2 - SDK 10.6 Support
              AdobePDFViewer: Version: 11.0.07 - SDK 10.6 Support
              MeetingJoinPlugin: Version: (null) - SDK 10.6 Support
    Safari Extensions:
              LastPass: Version: 3.1.21
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              WebEx64: Version: 1.0 - SDK 10.6 Support
              CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 Support
              f5 sam inspection host plugin: Version: 7060.2013.0312.1 Support
              Google Earth Web Plug-in: Version: 7.1 Support
    3rd Party Preference Panes:
              Flash Player  Support
              Java  Support
              Logitech Control Center  Support
              Plantronics  Support
              Symantec QuickMenu  Support
    Time Machine:
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
              Destinations:
                        Time Machine [Local] (Last used)
                        Total size: 1 
                        Total number of backups: 16
                        Oldest backup: 2013-10-23 15:56:24 +0000
                        Last backup: 2014-05-27 20:27:27 +0000
                        Size of backup disk: Excellent
                                  Backup size 1  > (Disk size 0 B X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   3%          WindowServer
                   1%          Box Sync Monitor
                   1%          Box Sync
                   1%          fontd
                   0%          SystemUIServer
    Top Processes by Memory:
              246 MB          WindowServer
              197 MB          mds_stores
              169 MB          Airmail
              115 MB          Microsoft Outlook
              98 MB          Safari
    Virtual Memory Information:
              3.56 GB          Free RAM
              2.49 GB          Active RAM
              515 MB          Inactive RAM
              982 MB          Wired RAM
              1.74 GB          Page-ins
              40 KB          Page-outs

    ... I don't have a lot running by way of background processes
    There are many background processes running on that Mac. The following will determine its peformance without several that are likely to be causing the problem.
    Please determine if the problems also occur in "Safe Mode":
    Safe Mode or "Safe Boot" is a troubleshooting mode that bypasses all third party system extensions and loads only required system components. Read about it: Starting up in Safe Mode
    You must disable FileVault before you can start your Mac in Safe Mode.
    Starting your Mac in Safe Mode will take longer than usual, graphics will not render smoothly, audio is disabled on some Macs, and some programs (iTunes for example) may not work at all.
    Merely starting your Mac in Safe Mode is not intended to resolve the problem, it's to observe its performance without certain additional components.
    To end Safe Mode restart your Mac normally. Shutdown will take longer as well.

  • Find feature looses focus while typing a phrase, after typing the first space character.

    The find feature now looses focus while I am entering a phrase. After entering the first word of a phrase and the space character, the find box will reposition itself to a possible result on the web page on EVERY CHARACTER and I have to reposition the cursor BACK to the find box to enter every subsequent character in the phrase I am searching for. Is there a way I can turn this useless (for me) *feature* off?
    I used to be able to key the phrase I was looking for, and the box would turn red as I typed if the phrase did not exist. I would really appreciate being able to do this again. It now seems that Firefox 'jumps the gun' to find the phrase before I have completed typing it in.
    Thanks.

    *If you have many extensions then first enable half of the extensions to test which half has the problem.
    *Continue to divide the bad half that still has the issue until you find which one is causing it.

  • Q:How to set the inactive 'sub-tab' text color?

    On portal.oracle.com I created my own Page Style (changed the
    color scheme) from the default and then added 'sub-tabs' to the
    Group Docs tab. Now when you click on Group Docs you see four
    'sub-tabs' underneath it. The problem I am having is that on the
    inactive tabs the text is not what I set when I created the Page
    Style. It appears to be reverting to color of the original Style
    which was created for my Portal. Any suggestions?

    do it like this
    g.setColor(255,255,255);//this will set the color for the canvas
    g.fillRect(0,0,ht,wd);//this will fill the rect(screen) with the above color,actually this will be BG color for ur app..ht,wd are the height and width of ur canvas...
    now specify color for the text
    g.setColor(r,g,b);//this color shud ofcourse be diff frm the color set for BG
    now draw the string
    g.drawString("xxx", 0, 0, ....);

  • Sub Tabs not displaying correctly

    We are having the following problem with a 10g install.
    A page group has been created. A custom style for the page group has been associated with the page group.
    The style has been edited - tab properties. Custom colors and fonts have been allocated to the active and inactive tabs.
    At the top level (i.e. level one of the tabs) everything works as expected. The tabs are correctly using the custom colors and font styles for both active and inactive tabs.
    The problem is with tabs below this top level (i.e. sub-tabs). The inactive tabs appear as they should. The active tab however is not using the correct font. The color however is correct. If I view page source I see that the tab in question is using <font class="SubTabBgTextid1siteidXX"> whereas the tabs that are working correctly use <font class="TabBackgroundTextid1siteidXX">.
    I notice that the other tabs on the same sublevel use the correct <font class="TabForegroundTextid1siteidXX"> style.
    So portal is using the class "SubTabBgTextid1siteidXX" whereas it should be using "TabBackgroundTextid1siteidXX".
    Please advise on how to change the properties for "SubTabBgTextid1siteidXX" as we cannot find anywhere other than the tabs general properties when editing the page style.

    This looks like a bug. I did some testing and found a potential issue with INACTIVE subtabs (specifically INACTIVE subtabs don't appear to pick up the Font Face and Font Style selections made as part of the style definition). For me, INACTIVE subtabs always seemed to render using a Arial, Helvetica Font Face and a bold Font Style (but seem to pick up the Font Size, Font Color, and Font Decoration settings). Is this what you are seeing?
    TOP LEVEL TABS
    Active Tab - TabForegroundTextidXXXXsiteidYY
    Inactive tab - TabBackgroundTextidXXXXsiteidYY
    SUBTABS
    Active Tab - TabForegroundTextidXXXXsiteidYY
    Inactive Tab - SubTabBgTextidXXXXsiteidYY

  • How to find number of subtabs in the in the sub tab layout

    Hi,
    I have a sub tab layout region.In that, i am hiding some some sub tabs based on some condition.I want to know how many visible sub tabs that a sub tab layout presently have in all of my sub tab controllers.Please Help me in this.
    Thanks
    Satya

    Satya,
    OASubTabLayoutBean subTabLayout = (OASubTabLayoutBean)webBean.findChildRecursive("SubTabLayoutRN");
    if(subTabLayout!=null)
          System.out.println("Child :"+subTabLayout.getIndexedChildCount());
    }Regards,
    Gyan

  • TAB and SUB-TAB

    Hi Experts, i need some help plz:
    Iu2019m working in transaction RECN. In a TAB (which named Objects) there is another tab (which named Assignment).
    I have added 2 fields in the section <Objects> (I do it using the way which in Note OSS 690900). In fact, the 2 fields must be displayed in the session "Object" of the sub-tab: Assignment.
    In transaction recacust, I cannot find the location of standard fields of tab Assignment.
    Is there any OSS Note that describes how to find sub-tabs?
    Thanks,
    Mehdi,

    Hi Mehdi,
    please check transaction FOI2,
    there you will find filed group 100 which should be exactly what you are looking for.
    You can find all necessary transactions concering BDT and RE-Fx by using transaction BUS0.
    Looks like this subscreen might still be configured via re classic, at least on a 4.7 II system, which is what I am using right now.
    Hth
    Ute

  • Sub-Tabs attached to HTML docs in CS4

    Anyone else find this to be true as well?
    Do yourself a favor and don't use the sub-tabs under a html
    doc to edit CSS. They dont update when you have the CSS file in its
    own tab and save. It makes it incredibly confusing switching
    back-n-forth between the HTML file and the CSS file.
    The only thing it is useful for is quickly seeing all of the
    linked files to your html doc, not for editing those files.

    Hi Tyler,
    Yes, that's correct. The File > Save All command was added
    to help this
    case.
    HTH,
    Randy
    > Anyone else find this to be true as well?
    >
    > Do yourself a favor and don't use the sub-tabs under a
    html doc to edit CSS.
    > They dont update when you have the CSS file in its own
    tab and save. It makes
    > it incredibly confusing switching back-n-forth between
    the HTML file and the
    > CSS file.
    >
    > The only thing it is useful for is quickly seeing all of
    the linked files to
    > your html doc, not for editing those files.
    >

  • CS4 Exporting media Loosing Focus

    Hi
    When exporting media to the media encoder I am finding that I am loosing focus of the rendered file in flash.
    the original size of footage is 1920 X 1080 I have croped this to an area of the footage that I require 720 x 640 and changed the out put size to the same.
    when this is rendered out the image is blury.
    how can I change the settings to be in focus as the original footage is in focus.
    Thanks
    Rodney

    Hi Hunt
    the flash settings that I am using are
    using flash 8 and higher
    I am encoding using the alpha channel due to the footage is keyed out
    the frame rate is 1200
    I have resized to 640 x 720 from 1920 x 1080 and also croped the footage as well to the same size
    Thanks
    Rodney

Maybe you are looking for

  • When ever i plug my iphone 4 into my computer it always tells me to restore iphone.

    As the Question sugests i am being told to restore my iphone 4 almost everytime i plug it in to my computer, I might get one time that it doesn't tell me to straght after the restore. After that i try to sync it and it just comes up with an un expect

  • Logic Remote connectivity issues after updating to iOS 8 (solved!)

    Has anyone else has been experiencing connectivity issues with Logic Remote after updating to iOS 8? After updating to iOS 8 I could no longer connect so I sent a feedback report to Apple and got a response that cleared up my problem immediately: Nav

  • Changing or Loading Styles crashes InDesign

    Hello, In a particular document, if I try to load or even change (paragraph) styles, InDesign crashes. I've been able to load styles from the same source document into other documents. But this document, no. What could be wrong with this document and

  • BI Publisher output problem

    Hi, This is BI publisher report ....i have registered concurrent program and data definition and templates ...After we submit the SRS window the output came in XML template but not excel format ....wat is the reason ...plz help me... Thanks, Sidharth

  • I Need to Return Two values or more from Function, Is this possible?

    Below is the offending query, I am trying to pass v_bu and v_po to this function, and after validations then return v_count and v_action is this possible in a function? I am having problem returning two values. see below code function po_edi_func(v_b