Submenu disappears after click in Firefox only

I have created a horizontal spry menu which is working fine, but in Firefox the submenu disappears after clicking a submenu item - you then have to roll over the parent menu item to make the submenu visible again. In Safari the submenu remains visible even after clicking an item. I would prefer the menu to behave as it does in Safari. A link to the site is www.jakeharris.ca if anyone can help - look at it in Safari and Firefox to see the differences (not sure how it is in IE!)
Many thanks,
Hillary

That is how the submenu is programmed to work...to hide when you get to the page you call.
Although my Safari did not work the way yours did (I am on XP), I think what you are actually asking about is what I would call "local page indicators." That is, a kind of 'sign' that you are on a specific page.
In your case, for each page, you would show an "open" menu with the appropriate menu list item highlighted with your normal hover color.
There may be a way in the javascript to allow the submenu on a page to be always "on" or open, but I don't know much about javascript, so I can't help with that.
If you have not used a Template to build the pages, it is even easier than fiddling with the javascript, if a tiny bit timeconsuming.
Locally-significant styling is pretty straightforward, in theory.
On each page, replace the class on the top menu item (on the main bar) for that page (right now it will say something like <li><a class="MenuBarItemSubmenu" href="#">Item 1</a> with a new class (you might call it "localpage") so you can make descendant selectors that apply to showing the submenu. Then write styles that cancel the 'hide' technique...get rid of the left: -1000em; for instance. I haven't gone through and worked this through, but it should work. Let me know if you need code; I need to go to breakfast right now, though!
Then make another class to style the individual items for their pages, for instance .local that can be grouped with the hover styles that change the item color when you hover over them:
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible, .local
    background-color: #33C;
    color: #FFF;
On each page, add this class to the menu item that pertains to that page:
<a href="#" class="local">Chasing Wild Horses</a>
on the "Chasing Wild Horses" page, for instance.
This is a pretty subtle and elegant solution to what most people use <h1> heads for. Keep in mind, though, that if you want SEO to understand your page, without a hierarchical text indicator, it might be too subtle, as h1, h2, etc. heads help to indicate levels of importance of content for search engines and screen readers.
But it will look great, nonetheless.
Beth

Similar Messages

  • Don't know the name of it but a toolbar at the top of the window has disappeared after I restarted Firefox. It contained add-ons such as Download Helper and I don't know how to get it back. Please help. Thanks!

    I don't know the name of it but a toolbar at the top of the window has disappeared after I restarted Firefox. It contained add-ons such as Download Helper and I don't know how to get it back. Please help. Thanks!
    EDIT: Sorry I meant the "Save Complete" add-on, not Download Helper.

    Be sure "Add-on Bar" is checked (click on "Add-on Bar" to check or un-check)
    *See --> https://support.mozilla.org/en-US/kb/Back%20and%20forward%20or%20other%20toolbar%20items%20are%20missing
    '''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 may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.org/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *'''''Adobe PDF Plug-In For Firefox and Netscape''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *'''''Shockwave Flash''''' (Adobe Flash or Flash): [https://support.mozilla.org/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *'''''Next Generation Java Plug-in for Mozilla browsers''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • My firefox crashes directly after clicking the firefox-button

    '''1'''. firefox suspended directly after invoke the program
    '''2.''' I changed the "compatibility-mode" to "Windows 98/Windows Me"
    '''3'''. firefox crashes directly after clicking the firefox-button
    -> it opens "Morzilla Crash-Detector"

    -> '''Is my Firefox problem a result of MALWARE ??'''
    * Popups Not Blocked - http://kb.mozillazine.org/Popups_not_blocked
    -> Do a MALWARE check with these Malware Scanning programs. You need to scan with all programs because each program detects different malware. Make sure that you UPDATE each program to get the latest version of their Databases before doing a Scan. Also, Close All other Applications (softwares) before Starting to Run Scans.
    * Malwarebytes' Anti-Malware - http://www.malwarebytes.org/mbam.php
    * SuperAntispyware - http://www.superantispyware.com/
    * Spybot Search & Destroy - http://www.safer-networking.org/en/index.html
    * Ad-Aware Free Internet Security - http://www.lavasoft.com/products/ad_aware_free.php
    Check and tell if its working.

  • JpopupMenu disappear after click one it.

    Hi , I have a problem with a 3rd party library. by the way. please help,
    Applet contain Panel name "Chooser"
    "Chooser" contain a button "open"
    After click on the "open" button it will invoke Jpopupmenu
    JpopupMnu have another panel inside
    Some people overridden setVisible() method
    I seem that when i click on any area on anything this panel on Jpopupmenu Jpopupmanu will be diappear.
    someone HINT that :
    have to do something with the popup's overriden setVisible method. Tell the "Chooser" from applet that the application is an applet, so it doesn't set the "popup" window non-visible.

    no ..... is it?
    This is my code......
    when i deploy applet i can't click any button on Jpopupmenu it will disappear before
    someone said to overridden setvisible method to said that the application is an applet ...........??!?!?!?! any body understand what does that mean ....
    package test;
    import java.awt.BorderLayout;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JApplet;
    import javax.swing.JButton;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JPopupMenu;
    public class JChooser extends JApplet implements ActionListener{
    private JPopupMenu m_objJPopupMenu;
    private boolean m_bInitialized;
    protected boolean m_bDateSelected;
    private JButton m_objXButton;
    public JChooser(){
    public void init(){
    JLabel test = new JLabel();
    test.setText("Test");
    getContentPane().add(test);
    getContentPane().add(getXButton(), BorderLayout.EAST);
    m_objJPopupMenu = new JPopupMenu()
    public void setVisible(boolean bVisibleP)
    Boolean isCanceled =
    (Boolean) getClientProperty("JPopupMenu.firePopupMenuCanceled");
    if (bVisibleP
    || (!bVisibleP && m_bDateSelected)
    || ((isCanceled != null) && !bVisibleP && isCanceled.booleanValue()))
    super.setVisible(bVisibleP);
    m_objJPopupMenu.setLightWeightPopupEnabled(true);
    m_objJPopupMenu.add(getXPanel());
    m_bInitialized = true;
    * @return
    private JButton getXButton() {
    if (m_objXButton == null)
    m_objXButton = new JButton();
    m_objXButton.addActionListener(this);
    return m_objXButton;
    public void actionPerformed(ActionEvent e)
    int x =
    getXButton().getWidth() - (int) m_objJPopupMenu.getPreferredSize().getWidth();
    int y = getXButton().getY() + getXButton().getHeight();
    m_objJPopupMenu.show(getXButton(), x, y);
    * @return
    private JPanel getXPanel() {
    JPanel aPanel = new JPanel();
    aPanel.setLayout(new GridLayout(5,2));
    aPanel.add(one_btn);
    aPanel.add(two_btn);
    aPanel.add(three_btn);
    aPanel.add(four_btn);
    aPanel.add(five_btn);
    aPanel.add(six_btn);
    aPanel.add(seven_btn);
    aPanel.add(eight_btn);
    aPanel.add(nine_btn);
    aPanel.add(ten_btn);
    aPanel.add(eleven_btn);
    aPanel.add(twelve_btn);
    aPanel.setSize(100,100);
    twelve_btn.addActionListener(new Eavesdropper());
    return aPanel;
    private JButton one_btn = new JButton();
    private JButton two_btn = new JButton();
    private JButton three_btn = new JButton();
    private JButton four_btn = new JButton();
    private JButton five_btn = new JButton();
    private JButton six_btn = new JButton();
    private JButton seven_btn = new JButton();
    private JButton eight_btn = new JButton();
    private JButton nine_btn = new JButton();
    private JButton ten_btn = new JButton();
    private JButton eleven_btn = new JButton();
    private JButton twelve_btn = new JButton();
    class Eavesdropper implements ActionListener {
    public void actionPerformed(ActionEvent e) {
    one_btn.setText("aaaa");
    }

  • Scroll bar of Detail table disappears after clicking on other Detail table.

    I am using JDeveloper 11.1.1.0.2 and JHeadstart 11g TP1.
    I have 1 master table with 3 detail tables.
    Master table: Layout style = Table-form --> inline, Stack Groups on same page = Detail Groups Only (Tabbed)
    Detail tables: Layout style = Table-form --> inline, Same Page = Yes, Below Parent Group
    If I click on my first Detail table (which has a lot of columns) I see a horizontal scrollbar. Then I click on the other tabs. But when I go back to the first tab the horizontal scrollbar has disappeared so I cannot see the last columns.
    How can I solve this problem?

    Can you upgrade to the latest TP2 version that can be downloaded from cso.oracle.com and see whether the problem is still there?
    Steven Davelaar,
    JHeadstart Team.

  • Yahoo toolbar disappeared after update to firefox 30 yesterday How to fix?

    Firefox automatically updated to version 30 yesterday & NOW my Yahoo Toolbar has disappeared & doesn't show up even in the View/Toolbars of the Menu.... Although when I check the AddOn Extensions it's showing as installed & Enabled, but it's not working... How do I fix this?

    Your Firefox reported itself as version 16.0. Could you try the fix in the first section of this article: [[Websites say that Firefox is outdated or incompatible even though it's the latest version]].
    Firefox 30 switched more plugins from "Always Activate" to "Ask to Activate". You may need to switch your Yahoo-related plugins back to "Always Activate" if the toolbar needs them. You can open the Add-ons page using either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Plugins. I'm not sure which plugins are the Yahoo ones, but presumably you can determine that from their names and descriptions.
    To test, try opening a new window (Ctrl+n) or new private window (Ctrl+Shift+p). Any improvement?

  • My cursor display (arrow) on my Mac disappears from view on Firefox only. Safari and all other software reveals the arrow, it's just missing from Firefox. Help! This is my access of choice!

    I had several things open on my laptop: Firefox, Safari (it opens automatically when I click a link in an e-mail), Mail. I was bouncing among all these places when I realized my cursor (arrow) wasn't showing up ... but only when I was in Firefox. I have set up all my usual accounts (facebook, Google+, Flickr, LinkedIn, etc.) using Pin Tabs, but I've had that for a few months.
    I don't know if this is a Mac issue or a Firefox issue--I'm thinking the latter because the problem occurs only when I'm using Firefox.

    I should note that while it is Ff 8.0.1 I use, I'm on OS X 10.7 / Lion, not 10.6 as noted above. More precisely, I use 10.7.2 but am not clear if the problem only appeared with the .2 update.

  • My profile keeps disappearing after I close Firefox. In order to open it back up, I have to keep re-creating a new one. How to fix?

    I've already uninstalled, and reinstalled Firefox, and no dice. If I don't re-create the new profile, I get the error message that the profile is missing or inaccessible when trying to open firefox. I have to open the browser by clicking on the new profile I just created in the profile manager box.

    This can be caused by a problem with the profiles.ini file.
    It is probably best to delete the profiles.ini file to force Firefox to create a new default profile
    *http://kb.mozillazine.org/profiles.ini_file
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *Windows: %AppData%\Mozilla\Firefox\<br>C:\Users\&lt;user&gt;\AppData\Roaming\Mozilla\Firefox\Profiles\&lt;profile&gt;\
    *Linux: ~/.mozilla/firefox/
    *Mac: ~/Library/Application Support/Firefox/
    *http://kb.mozillazine.org/Profile_Manager
    *https://support.mozilla.org/kb/Managing+profiles

  • In FF 7.0.1, the New Tab button on the Tab Strip disappeared after clicking the Tab Group icon and trying to return, so I'm looking for advice on how to get the New Tab to reappear on the Tab Strip.

    In Windows Vista, FF 7.0.1, I selected the Tab Group button to try it out. However, when I selected the Tab Group button again to close that view, the New Tab button in the Tab Strip no longer appears. I'm requesting help to restore the New Tab button (has the "+" sign on it) on the Tab Strip just to the right of the currently open tabs.

    You can find the New Tab button showing as a '+' on the Tab bar.
    You can open the Customize window and drag the New Tab button that shows as a plus sign (+) from the Tab bar on another toolbar and it will become a regular toolbar button like the New Tab button that you have in Firefox 3 versions.<br />
    Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    If you can't find the New Tab button then click the "Restore Default Set" button in the Customize window.
    If you want the New Tab button at the far right end of the Tab bar then place a flexible space to the left of it.

  • Buttons to Page Destination Disappear after clicking

    I have a column of headers on the left side of my document that upon clicking, take me to the appropriate page. I click on the first two and it work beautifully. But I click on any others and the list and although it takes me to right page, all of the buttons disappear. Anyone know why this might be and how I can fix it?
    Thanks,
    Lauren

    The next time you have the problem, note the exact times when it starts and ends: hour, minute, second.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Scroll back in the log to the time you noted above. Post any messages timestamped during that interval – the text, please, not a screenshot.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into a message.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.

  • Trip Number gets disappeared after clicking the UWL work item

    Hi All,
    When i click on work item in UWL to make a decision on it, a pop up gets opened trip form(there is error on trip formu201D Error while initiating travel form") . When i close this popup & return to UWL , trip number of that item gets disappeared.
    Similarly when i launch UWL , some trip numbers do not appeared.
    Please help.
    Regards,
    Amit S

    Hi Piyush,
    Thanks for replying.
    I already tried it. it is not useful . following is XML file for tsk TS20000118. I think there is problem inside code.since i am not able to locate Action & view in Content folder. Please see the bold texts.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE UWLConfiguration PUBLIC '-//SAP//UWL1.0//EN' 'uwl_configuration.dtd'
      >
    <UWLConfiguration version="1.0">
      <ItemTypes>
        <ItemType name="uwl.task.webflow.decision.TS20000118" connector="WebFlowConnector" defaultView="com.sap.pct.erp.mss.tra.view.RequestApprovalView" defaultAction="com.sap.pct.erp.mss.tra.action.DisplayRequestForm" executionMode="default">
          <ItemTypeCriteria externalType="TS20000118" connector="WebFlowConnector"/>
          <CustomAttributes>
            <CustomAttributeSource id="WEBFLOW_CONTAINER" objectIdHolder="externalId" objectType="WebflowContainer" cacheValidity="final">
              <Attribute name="TripNumber" type="string" displayName="Trip Number"/>
              <Attribute name="EmployeeNumber" type="string" displayName="Employee Number"/>
            </CustomAttributeSource>
          </CustomAttributes>
          <Actions>
            <Action name="com.sap.pct.erp.mss.tra.action.DisplayRequestForm" groupAction="" handler="SAPAppLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="toolbar=no,menubar=no">
              <Properties>
                <Property name="SAPIntegrator" value="ROLES://portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.roles/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.area_travel_expenses/com.sap.pct.erp.ess.tripform"/>
                <Property name="sap.xss.tra.TripComponent" value="R"/>
                <Property name="sap.xss.tra.PersNo" value="${item.EmployeeNumber}"/>
                <Property name="display_order_priority" value="10"/>
                <Property name="sap.xss.tra.TripNo" value="${item.TripNumber}"/>
              </Properties>
              <Descriptions default="com.sap.pct.erp.mss.tra.action.DisplayRequestForm"/>
            </Action>
          </Actions>
        </ItemType>
      </ItemTypes>
      <Views>
        <View name="com.sap.pct.erp.mss.tra.view.PlanApprovalView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.webflow.decision.TS01000124" columnOrder="TripNumber, statusIcon, subject, priority, creatorId, createdDate, dueDate, processor, forwardedDate, attachmentCount, detailIcon, APPROVE, REJECT, SENDBACK" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="none" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="com.sap.pct.erp.mss.tra.PlanApproval">
          <DisplayAttributes>
            <DisplayAttribute name="REJECT" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.RejectPlan" referenceBundle="com.sap.pct.erp.mss.tra.Reject" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="SENDBACK" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.SendBackPlan" referenceBundle="com.sap.pct.erp.mss.tra.SendBack" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="APPROVE" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.ApprovePlan" referenceBundle="com.sap.pct.erp.mss.tra.Approve" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="TripNumber" type="string" width="" sortable="yes" format="default" referenceBundle="com.sap.pct.erp.mss.tra.TripNumber" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
          </DisplayAttributes>
          <Actions>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.ApprovePlan" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.Approve" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="decisionKey" value="0001"/>
              </Properties>
            </Action>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.SendBackPlan" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.SendBack" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="UserDecisionNote" value="true"/>
                <Property name="decisionKey" value="0002"/>
              </Properties>
            </Action>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.RejectPlan" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.Reject" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="UserDecisionNote" value="true"/>
                <Property name="decisionKey" value="0003"/>
              </Properties>
            </Action>
            <Action reference="submitUserDecisions"/>
            <Action reference="com.sap.pct.erp.mss.gotoWorkcenter"/>
            <Action reference="refresh"/>
            <Action reference="defaultGlobalWizard"/>
            <Action reference="addToNavigation"/>
            <Action reference="removeFromNavigation"/>
          </Actions>
        </View>
        <View name="com.sap.pct.erp.mss.tra.view.RequestApprovalView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.webflow.decision.TS20000118" columnOrder="TripNumber, statusIcon, subject, priority, creatorId, createdDate, dueDate, processor, forwardedDate, attachmentCount, detailIcon, APPROVE, REJECT, SENDBACK" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="none" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="com.sap.pct.erp.mss.tra.RequestApproval">
          <DisplayAttributes>
            <DisplayAttribute name="REJECT" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.RejectRequest" referenceBundle="com.sap.pct.erp.mss.tra.Reject" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="SENDBACK" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.SendBackRequest" referenceBundle="com.sap.pct.erp.mss.tra.SendBack" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="APPROVE" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.ApproveRequest" referenceBundle="com.sap.pct.erp.mss.tra.Approve" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="TripNumber" type="string" width="" sortable="yes" format="default" referenceBundle="com.sap.pct.erp.mss.tra.TripNumber" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
          </DisplayAttributes>
          <Actions>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.ApproveRequest" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.Approve" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="decisionKey" value="0001"/>
              </Properties>
            </Action>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.SendBackRequest" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.SendBack" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="UserDecisionNote" value="true"/>
                <Property name="decisionKey" value="0002"/>
              </Properties>
            </Action>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.RejectRequest" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.Reject" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="UserDecisionNote" value="true"/>
                <Property name="decisionKey" value="0003"/>
              </Properties>
            </Action>
            <Action reference="submitUserDecisions"/>
            <Action reference="com.sap.pct.erp.mss.gotoWorkcenter"/>
            <Action reference="refresh"/>
            <Action reference="defaultGlobalWizard"/>
            <Action reference="addToNavigation"/>
            <Action reference="removeFromNavigation"/>
          </Actions>
        </View>
        <View name="com.sap.pct.erp.mss.tra.view.TravelApproverWOC" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.webflow.decision.TS20000131, uwl.task.webflow.decision.TS01000124, uwl.task.webflow.decision.TS20000118, uwl.task.webflow.decision.TS20000135" columnOrder="TripNumber, statusIcon, subject, dueDate, priority, creatorId, createdDate, processor, forwardedDate, attachmentCount, detailIcon" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="none" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="top" referenceBundle="com.sap.pct.erp.mss.tra.Travel">
          <DisplayAttributes>
            <DisplayAttribute name="TripNumber" type="string" width="" sortable="yes" format="default" referenceBundle="com.sap.pct.erp.mss.tra.TripNumber" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
          </DisplayAttributes>
          <Actions>
            <Action reference="refresh"/>
            <Action reference="defaultGlobalWizard"/>
            <Action reference="addToNavigation"/>
            <Action reference="removeFromNavigation"/>
            <Action name="viewDetail" groupAction="" handler="uwlExcludeAction" returnToDetailViewAllowed="yes" launchInNewWindow="no">
              <Descriptions default="viewDetail"/>
            </Action>
            <Action reference="com.sap.pct.erp.mss.gotoWorkcenter"/>
          </Actions>
        </View>
        <View name="com.sap.pct.erp.mss.tra.view.TripApprovalView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.webflow.decision.TS20000131" columnOrder="TripNumber, statusIcon, subject, priority, creatorId, createdDate, dueDate, processor, forwardedDate, attachmentCount, detailIcon, APPROVE, REJECT, SENDBACK" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="none" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="com.sap.pct.erp.mss.tra.TripApproval">
          <DisplayAttributes>
            <DisplayAttribute name="REJECT" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.RejectTrip" referenceBundle="com.sap.pct.erp.mss.tra.Reject" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="SENDBACK" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.SendBackTrip" referenceBundle="com.sap.pct.erp.mss.tra.SendBack" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="APPROVE" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.ApproveTrip" referenceBundle="com.sap.pct.erp.mss.tra.Approve" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="TripNumber" type="string" width="" sortable="yes" format="default" referenceBundle="com.sap.pct.erp.mss.tra.TripNumber" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
          </DisplayAttributes>
          <Actions>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.ApproveTrip" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.Approve" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="decisionKey" value="0001"/>
              </Properties>
            </Action>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.SendBackTrip" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.SendBack" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="UserDecisionNote" value="true"/>
                <Property name="decisionKey" value="0002"/>
              </Properties>
            </Action>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.RejectTrip" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.Reject" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="UserDecisionNote" value="true"/>
                <Property name="decisionKey" value="0003"/>
              </Properties>
            </Action>
            <Action reference="submitUserDecisions"/>
            <Action reference="com.sap.pct.erp.mss.gotoWorkcenter"/>
            <Action reference="refresh"/>
            <Action reference="defaultGlobalWizard"/>
            <Action reference="addToNavigation"/>
      Regards,
    Amit

  • How do I restore saved passwords that disappeared after update of Firefox?

    This is on an Acer laptop running Win 7 home premium

    Do you mean names and passwords in the Password Manager or do you mean that you are no longer logged on to (remembered by) websites after closing and restarting Firefox?
    *Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    There is a difference between remembering the name and password in the Password Manager and a "remember me" check box on a web page to log you in automatically.
    The latter usually involves the creation of a special "remember me" cookie that is stored on your computer and that is send to the server.
    If this "remember me" cookie is removed or gets corrupted or is not send to the server then the server won't remember you and you will have to sign in once again.
    You can remove this "remember me" cookie to make the website forget you and require you to sign in again.
    Did you possibly reset/refresh Firefox?
    When you reset Firefox then a new profile is created and some personal data (bookmarks, history, cookies, passwords, form data) is automatically imported and the current profile folder will be moved to the desktop to an "Old Firefox Data" folder.
    Installed extensions and other customizations (toolbars, prefs) that you have made are lost and need to be redone.
    It is possible to recover data from the old profile, but be cautious not to copy corrupted files to avoid carrying over problems.
    *https://support.mozilla.org/kb/Recovering+important+data+from+an+old+profile
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • After clicking on firefox tab..i am not getting the option 'TOOLS'...my operating system is Window7

    I am not able to locate the TOOLS option in through the firefox tab of top right hand corner....I have some settings to change...
    I am using Window7 as my operating system and FIREFOX4

    To call up the Tools menu, press F10 or the Alt key to display the menu bar temporarily. (If there's a way to do it though the orange button, I haven't found it.)

  • Some Maisl recieved diappear after clicking on email. ONLY with some emails

    Some Mails recieved disappear after clicking theml. This happens ONLY with some emails, inconsistant. Anyone experienced this als well? Solution available? Txs

    HI,
    We had a similar problem while creating a NCR.You can give this one a shot. Just see whats the "Tax Code' for the supplier that you have entered while creating the NCR.Try changing the tax code for that particular supplier and see if it is working fine.
    Subbu

  • Mapping-source column(for the measure)disappears after pressing apply

    I am using AWM 11.2.0.2.0B and Oracle 11.2.
    I have successfully mapped my dimensions. Then I defined a stored measure, say DISTANCE and I want to map it to a column in my database. When I click the "apply" button, the mapping disappears! And I can not find any error messages. I have tried mapping another column to it (defining a different measure), still the mapping disappears after applying.
    The type of the data(measure) is number(22) in my database, so I choose Data type: Number, Precision:22 and Scale=0 in my cube(storage section) and I check "use compression", therefore the measure will inherit the mentioned data type (of cube). I also tried using integer as the data type, no success. I first doubted that it expects some different type of data to be mapped, but seems that is not the problem. Every column I put there as my source column disappears after clicking on apply!
    Any idea what the problem is or where I should find a log?
    Edited by: 903009 on Dec 17, 2011 10:03 PM
    Edited by: 903009 on Dec 17, 2011 10:05 PM

    Hi Veeresh,
    As per my understanding, this error happens when the OLE DB Source component cannot find the corresponding source column in the database table. Possible reason is the the column name in the external database table has changed or
    the column has been removed.
    To verify this issue, please go to the Advanced Editor for OLE DB Source Input and Output Properties tab to see the External columns and Output columns. To fix it, please refresh the data or recreate the Source.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for

  • Iphone 4s no longer playing ringtones

    I have an Iphone 4s, I listen to a lot of audio books with my earbuds on. I used to be able to hear the ringtones over the audiobook. Now I hear no ring tones with or without earbuds. The phone only vibrates. How do I get the phone to ring so I can g

  • My apps open and then quit on launch

    Whenever I open any app that has been downloaded from iTunes, it'll open, then quit directly on launch. Can anyone help me fix this?

  • Broadcasting our church service

    We are purchasing our first Mac for our church, and we broadcast our services through Ustream.  Can anyone tell me what adapter I need to go from the audio/video outs on the camcorder to the Mac? I think I may have posted in the wrong section.  Pleas

  • Forcing Single Pass entry point

    Hi all I have a sequence based on the sequential model that I only ever want to enter as single pass. I am driving myself slight crazy as I keep clicking "Test UUT(s)" rather than "single pass". Is there a call back or expression I can add that will

  • HT4859 itunes backed up my music and emptied my itouch

    itunes backed up my music and emptied my itouch, what do I do?