When menu items are selected they become invsible

when I select a menu item the words become invisible.

Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
* Don't make any changes on the Safe mode start window.
See:
* [[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")

Similar Messages

  • Error: Show Details cannot be executed when multiple items are selected in a report filter field or in a slicer

    I have connected TABULAR Model to Excel, and in the pivot the filter is on multiple dimensions. When doing the drillthrough action it gives error - Error: Show Details cannot be executed when multiple items are selected in a report filter field or in a slicer
    Is there any workaround to this error?  so that drillthrough can be done even with multiple selection.

    Hi Vikas,
    The reason behind the error message requires the knowledge on what happens at the backend. When you perform a drill-through action, a query is sent to Analysis Services. This query is expressed in a query language called Multi-Dimensional Expression (MDX).
    Since the MDX language doesnot support drill-through command against a set (collection of tuples) an error is persisted. 
    For now, there is no workaround as it is a limitation of the underlying language that is generating the query.
    When multiple items are selected you lose the ability to drill-down on individual metrics. To resolve you must either:
    1. Select a single Item.
    2. Select all items.
    Hope this helps!
    Please mark as Answer if this helps! Thanks, Rajasekhar.

  • How Do You Control the Order That Menu Items Are Selected

    I am using iDVD 6 with the Portfolio Theme (iDVD 5). I created a project with one 15-minutes iMovie project and seven slideshows (created in iDVD).
    In Preview mode (or with the final) DVD, the order that entries on the main menu are selected does not seem to follow a logical pattern. As I try to advance using the right cursor, the second item (horizontally) is skipped. (I have two rows, each with four items). When I have one of the other three items in that row selected, the second item is selected if I hit the down arrow.
    In 'flowchart view' the eight items are in the order I want them to be selected. That is, the item that is being skipped is in the second position on the flowchart.
    Any insight on this would be appreciated.
    PowerBook G4 1.33 Ghz (me) & FP iMac - 1.0 Ghz (kids)   Mac OS X (10.4.4)   iMac (for the kids)

    I created an iMovie and then exported to iDVD, iDVD used the same sequence as the iMovie. When you build you Movie or slide show it follows the sequence that you place them in the time line. I have a Slide Show movie with video clips in the time line all of the shows and clips play in the order that I placed them. When you move through the menu use the right arrow to move accross the menu and the down arrow to move down to the next row. There is an button to move to the next menu. I have 13 chapters in my iDVD and they appear on 3 menus. Each menu shows 6 buttons you can edit the button titles and reposition them if you deselect the snap to grid and select the other option. When I open my project after exporting the titles overlayed each other. The buttons picted up my iMovie titles so I had to fix them and reduce the type size and move the buttons to separate them. The time line sets the order and the arrow keys move throgh the buttons on you Mac screen you can select with the mouse by clicking the button. On a DVD player you are stuck with the arrows and enter keys on the remote. You may have a glitch in your data check the time line along bottom of your original to see if the chapter markers are in position.
    Richard
    1.25 GHz Dual G4 Desk Top Mac OS X (10.4.6)

  • [WP8.1][Xaml]Update ListView items when other items are selected

    hi,
    i am developing an app for windows phone and using listview to list items. i am using custom template for the listview item. this custom template contains labels, image and button.
    i trying to update the other listview items while one item is selected or multiple item selected. to change listview item i am iterating over the listview and try to get custom template using visual tree helper class. using helper class i am able to retrieve
    control from custom template. once i changing the image in listview if i scroll the listview vertically image changed to its default state.
    is it possible to change the custom template values using visual tree helper class or do i need to do some other changes in my code.
    please suggest.
    <ListView x:Name="lst" Grid.Row="2" SelectionMode="Single" SelectedItem="{Binding ListBoxSelectedItem}"
    ItemsSource="{Binding TssVariableInfo}" Padding="0" Margin="0"
    HorizontalAlignment="Stretch" Grid.Column="0" Grid.ColumnSpan="2" ReorderMode="Disabled" AllowDrop="False"
    VerticalAlignment="Stretch" Holding="lst_Holding" >
    <ListView.ItemTemplate>
    <DataTemplate>
    <local:VariableTemplateSelectorClass Content="{Binding}" FontFamily="Segoe UI" >
    <local:VariableTemplateSelectorClass.IsLiteAndNonDuplicate >
    <DataTemplate>
    <Border BorderThickness="0,1,0,1" BorderBrush="DarkGray" x:Name="bordername">
    <Grid Margin="0,0,0,0" Tapped="Grid_Tap" x:Name="GridVarDetail" Background="#E8E8E8" Holding="Grid_Hold" HorizontalAlignment="Stretch" Width="{Binding ElementName=lst, Path=ActualWidth}">
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="16"/>
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="6*" />
    <ColumnDefinition Width="4*" />
    </Grid.ColumnDefinitions>
    <Image x:Name="imgLegend" Source="/Assets/Images/Legends/00-Blank.png" Width="13" Height="13" Grid.Row="0" Margin="0,0,0,0" HorizontalAlignment="Left" VerticalAlignment="Center"></Image>
    <TextBlock Foreground="Green" Margin="14,0,0,0" Grid.Row="0" FlowDirection="LeftToRight" x:Name="lblCustomerGivenName" Grid.Column="0" TextWrapping="NoWrap" TextTrimming="WordEllipsis"
    Text="{Binding VariableCustomerGivenName }" FontWeight="Normal" HorizontalAlignment="Left" FontFamily="Calibri" VerticalAlignment="Bottom" FontSize="16" />
    <TextBlock Foreground="Green" Margin="14,0,0,0" Grid.Row="1" VerticalAlignment="Top" Width="Auto" x:Name="lblStandardName" Grid.Column="0" TextWrapping="NoWrap" TextTrimming="WordEllipsis"
    Text="{Binding VariableStandarName}" FontWeight="Normal" HorizontalAlignment="Left" FontFamily="Calibri" FontSize="16" />
    <TextBlock Foreground="Gray" Margin="14,0,0,0" Grid.Row="2" VerticalAlignment="Top" Width="Auto" x:Name="lblSection" Grid.Column="0" TextWrapping="NoWrap" TextTrimming="WordEllipsis"
    Text="{Binding SectionName }" FontWeight="Normal" HorizontalAlignment="Left" FontFamily="Calibri" FontSize="16" />
    <TextBlock Margin="321,0,40,0" Foreground="Red" Grid.Row="0" VerticalAlignment="Bottom" Width="Auto" x:Name="lblValue" Grid.Column="1" TextWrapping="NoWrap"
    Text="{Binding Value}" FontWeight="Normal" HorizontalAlignment="Right" FlowDirection="RightToLeft" FontFamily="Calibri" FontSize="16" />
    <TextBlock Foreground="Gray" Margin="321,0,40,0" Grid.Row="1" VerticalAlignment="Top" Width="Auto" x:Name="lblLastDate" Grid.Column="1" TextWrapping="NoWrap"
    Text="{Binding LastDate}" FontWeight="Normal" HorizontalAlignment="Right" FlowDirection="RightToLeft" FontFamily="Calibri" FontSize="16" />
    <Image Source="/Assets/Images/LeftArrow.png" Height="50" Width="40" Grid.Row="0" Grid.Column="1" Grid.RowSpan="3" HorizontalAlignment="Right" Visibility="Collapsed" x:Name="imgLeftArrow" Tapped="btnMore_Tap" />
    <Image Source="/Assets/Images/2Y-OFF.png" Height="50" Width="40" Grid.Row="0" Grid.Column="1" Grid.RowSpan="3" HorizontalAlignment="Right" Visibility="Collapsed" x:Name="btn2Y" Tapped="btn2Y_Tap"/>
    <Image Source="/Assets/Images/CP-Off.png" Height="50" Width="40" Grid.Row="0" Grid.Column="1" Grid.RowSpan="3" HorizontalAlignment="Right" Visibility="Collapsed" x:Name="btnTL" Tapped="btnTL_Tap" />
    </Grid>
    </Border>
    </DataTemplate>
    </local:VariableTemplateSelectorClass.IsLiteAndNonDuplicate>
    </local:VariableTemplateSelectorClass>
    </DataTemplate>
    </ListView.ItemTemplate>
    </ListView>
    private void Grid_Hold(object sender, HoldingRoutedEventArgs e)
    if (e.HoldingState != Windows.UI.Input.HoldingState.Started)
    return;
    Image imgPlotImage;
    Grid GridVar = (Grid)sender;
    imgPlotImage = (Image)GridVar.FindName("imgLegend");
    General.VariableArrayYAxis.Add(dataObject.VariableID);
    General.DictSelectedVariableType.Add(dataObject.VariableID.ToString(), dataObject.IsTSSLite.ToString());
    GridVar.Background = new SolidColorBrush(Color.FromArgb(100, 255, 255, 255));
    Image imgLeftArrow = (Image)GridVar.FindName("imgLeftArrow");
    imgLeftArrow.Visibility = Windows.UI.Xaml.Visibility.Visible;

    That link is my signature not that i have provided it for reference. 
    You already have implemented binding in your code, just like you have bindings for TextBlock's 'Text' property, likewise you can defined a property for the 'Visibility' of image in the code behind
    e.g.
    private Visibility imgvisible
    public Visibility_ImgVisibility
    get { return imgvisible; }
    set
    if (imgvisible!= value)
    NotifyPropertyChanging("_ImgVisibility");
    imgvisible= value;
    NotifyPropertyChanged("_ImgVisibility");
    Then in xaml file, bind this property with the Visibility property of Image and access it as per your requirement (e.g. on tap of an item)
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • Display a message when  an item is selected from a dropdownlist

    Hi,
    I need to display a message(kind of alert message) when certain items are selected from the dropdownlist.
    Let me know what is a good way to do this in web elements?
    Thanks

    hello,
    unfortunately there is no validation / alerting for select menus in webelements.
    however...if you're feeling ambitious and or this is a definite requirement for your project...custom functions are open source so you could write an on change javascript function within the WESelect custom function that will find the new value and compare it against your certain items array of values.
    out of curiosity, what is your project's particular need to have an alert for a select menu based on what the end user selects? if this comes up more often or there's a good use case perhaps this could be built into a future version.
    jw

  • PSE7 Faces tagging doesn't work (No items are selected)

    Hi,
    I try to use the Faces tagging feature in PSE 7 (with windows vista 32bit sp1) but it doesn't work.
    For some reasons, the faces tagging interface never display the photos I've selected. In the lower left corner, it says "No items are selected".
    I tried selecting zero, one or more photos in the photo browser. When I select zero photos, it asks me if I want to find faces on all the displayed picture (I have about 5 000 pictures) but none appears in the faces tagging interface.
    The menu item Find->Find Faces for tagging and the button Face Faces for Tagging give the same result (doesn't work).
    Can anyone help me?
    Cheers,
    Alexandre

    Hi,
    Thanks for the help, but it did not work :(
    I tried two times:
    1) The repair command said it did not find any error and I said No to "Repair anyway", then optimized.
    2) Same thing, but I said yes to Repair anyway with the Visually similar content checkbox checked.
    Cheers,
    Alexandre

  • I want to implement three level Horizental navigation on the top navigation and menu items are created based on the data available in a SharePoint List.

    Hi All,
    I want to implement three level Horizental navigation on the top navigation and menu items are created based on the data available in a SharePoint List.
    Implement this requirement through customization, how can i start any help
    Thanks

    Hello,
    You can follow these links to get the result that you want. You can get the desired result either using the custom list or a site map. Please make sure when you edit the master page, dont work on the original v4.master. Always make a a copy and then work
    on it.
    This link will show you how get that navigation using a list.
    http://www.bitsofsharepoint.com/BlogPoint/Lists/Posts/Post.aspx?ID=60
    This link will show you how get that navigation using a sitemap.
    http://www.sharepointdiary.com/2012/01/custom-top-navigation-using-sitemap.html
    Please mark as "Answered" if this helped you.
    Thanks,
    norasampang

  • HT204266 I live in China, have Dutch nationality, and no US address or Credit Card; how can I have access to products from the US iTunes store, in particular music, when such items are not available from the China iTunes store? In general, what are the di

    I live in China, have Dutch nationality, and no US address or Credit Card; how can I have access to products from the US iTunes store, in particular music, when such items are not available from the China iTunes store? In general, what are the differences between countries' iTunes offerings? Does one really need an address and a credit card for any country to be able to access that countries iTunes store? Why these restrictions?

    You cannot.
    You cannot use another countrys itunes store.
    You must be physically locates inside the borders of a country to use that countrys itunes store and a credit card issued in that country with a valid billing address in that country.
    The owners of the distribution rights of movies/music/etc differ by country.  These distributors decide who can sell their content in that country.
    Buy from another source if your countrys itunes store does not carry somehting that you want.

  • How do I set up InDesign cross-document Text Anchor Hyperlinks so that when the files are moved, they remain active?

    I’m combining several InDesign files into one PDF, with several hundred text links across the different sections, as well as within each. The cross-document (section) Text Anchor Hyperlinks work fine in my workspace - but when I change the file location, they are no longer active (other links, bookmarks remain intact).
    How do I set up InDesign cross-document Text Anchor Hyperlinks so that when the files are moved, they remain active? 

    They seem to be a lot of extra work, and I don't see what the additional benefit is. I have several hundred links to do. I would appreciate learning what the benefit is, as I don't mind the extra effort if it will deliver the desired results.

  • I'm new to Mac. When iphoto's are printed, they are wavy/blurred.  I've heard there is special process prior to sending to photo processor.  Can anyone tell me how?

    I'm new to Mac.  When iphoto's are printed, they are wavy/blurred.  How do I prepare for submitting to photo processor to prevent this?

    Larry, thank you for your reply.  Actually, I haven't tried yet.  I'm asking because whenever I receive emailed photos or transferred photos from a Mac (via USB) to my PC, they are wavy or blurred.  Other PC users I talked with have the same problem.  One friend told me this can  be avoided thru a conversion process (I lost the instructions I was given).  I just converted to an iMac, so I am looking for that process.
    Joan

  • Update JTable when an item is selected in a JComboBox inside the same JTabl

    I created a JTable with a lookup JComboBox. I want to update values from the table when an item is selected in the ComboBox.
    I tried all the events posible in JComboBox, but I can not fire to update the JTable.
    Please if you have a how-to, (source) will help. Thanks.
    Regards,
    -Rory

    I tried that. But it only fires when the JComboxBox, lost the focus. And not in the "itemChange" event. How to do it width that event?
    I want something like "intemChange" event, to fire the JTable.fireTableChangeUpdate(); ... I send the code.
    * @author rory
    public class PeriodenDauerGrid extends JPortSimTable implements Serializable, ActionListener {
         * generated id
        private static final long serialVersionUID = -5270969898251578932L;
        public PeriodenDauerGrid() {
            super();
        @Override
        protected void initComponent() {
            super.initComponent();
            setModel(new PeriodenDauerGridTableModel());
            setDefaultEditor(String.class, new PeriodenCellEditor(this));
            setDefaultRenderer(String.class, new PeriodenCellRenderer());
        public void actionPerformed(ActionEvent e) {
            // HERE should fire the table update.
            // JOptionPane.showMessageDialog(null, "HOLITA!");
            PeriodenDauerGridTableModel model = (PeriodenDauerGridTableModel) getModel();
            model.fireTableDataChanged();
            updateUI();
    class PeriodenCellRenderer extends JLabel implements TableCellRenderer {
        public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
            setHorizontalTextPosition(SwingConstants.CENTER);
            setHorizontalAlignment(SwingConstants.CENTER);
            if (row == 1) {
                setOpaque(true);
                setBackground(GuiConstants.PANEL_COLOR);
            } else {
                setOpaque(false);
                setBackground(GuiConstants.CELL_EDITOR_COLOR);
            if (value instanceof Date) {
                Date n = (Date) value;
                // String.format(format, args)
                String s = String.format("%1$td.%1$tm.%1$tY", (Date) value);
                setText(s);
            } else {
                setText(value == null ? "" : value.toString());
            return this;
    class PeriodenCellEditor extends AbstractCellEditor implements TableCellEditor {
        private JComboBox combo = new JComboBox(new String[] { "7", "84", "182", "364" });
        private JTable table = null;
        public PeriodenCellEditor(PeriodenDauerGrid table) {
            combo.addActionListener(table);
            this.table = table;
        public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) {
            combo.setSelectedItem(value.toString());
            return combo;
        public Object getCellEditorValue() {
            return combo.getSelectedItem();
    }

  • How to show an arrow sign in the menu item area?

    Hello,
    Want to show an arrow sign which points to the right and represents the right direction shortcut key in a menu item area. In the "NewMenuItem()" , if specifing 'VAL_RIGHT_ARROW_VKEY' as the shortcut parameter, it just shows the word "Right" not what I expected the arrow sign.
    David

    Hi JR,
    That means I must add a sub item, and it will popup a specified menu window, it likes the following picture:
    But I just want approch this effect:
    this shoud be a panel not a sub menu.
    David

  • Still print picking list when ALL items are blocked. Is this possible.

    You know what warehouse people are like. When a delivery has all items blocked the picking list isn't printed, and the warehouse guys are wondering why nothing has printed. Of course a list is printed when there is at least one item that is not blocked on a picking list.
    My question is whether it's possible to print the picking list when all items are blocked?. I would expect no items to be printed for picking, but at the bottom of the report I would expect to see a list of items blocked.
    Anyone?.
    Jason

    HI
    1.Kindly chekc the routine in the t code V/27
    2.Against the routine against rthe condition type in the be.lwo path
          Logistics Execution
              Shipping
                 Output Control
                      Output Determination
                         Maintain Output Determination for Outbound Deliveries
                                Maintain Output Determination Procedure
    3.if it is in warehouse management then check in the tocde OMLV
    REgards
    Damu

  • Menutab not shown properly when second menu-item is selected.

    When my menutabs are shown everything seems fine, but when you click the 2nd menu-tab the first menu-tab isn't shown properly anymore.
    If I have a look at the code-source I can see that the first gif that's needed for the tabbed-view isn't present anymore if the 2nd menu-tab is clicked.
    Could somebody explain the different skins that are used by the menuTab component so I know if maybe I've forget to define a specific in my custom skin?
    Maybe somebody already used custom skins with your custom images for the tabbed view of menuTabs?
    Regards,
    Nathalie

    >
    Yes, you are right. In this sample program,
    paintcomponent() is not really necessary, but it is in
    the real program I am doing. So I can not get rid of
    the paintComponent() method. In this paintComponent()
    method I have added (add) and painted (paint) several
    JComponent objects and this is the only one which
    fails. I can not find the reason why.
    Regards.
    the reason is that on each call to paint , you add new components to the panel.
    the scenario goes like this:
    1. frame is made visible -> paintComponent() gets called - > fillPanel() gets called ,
    so on the panel are the following 4 components:
    one JButton
    one JTextField
    one JCheckBox
    one ComboBox
    2. click on the combobox, -> the popup list of the combo is displayed -> paintComponent() is called -> fillPanel() is called
    so you have 8 components on the panel;
    The popup list remain visible, is not actualy contained in the PanelNullLayout component due to the swing mecanics
    3. you select an option in the list, the list becomes invisible, paint() gets called -> fillPanel getsCalled(),
    so, again four componets are added. you have 12 components in the panel.
    The components are painted in the order they have been added to therir container. The first combo box, that you first clicked, has selected index 1, but the last two have selected index 0. As these two are added after the first one, they are painted "above" first one, so you see the last comboBox added.
    Add this code to the paintComponet method if you did not understand
    // public void paintComponent(Graphics g) {
    // super.paintComponent(g);
    // fillPanell();
    int count = getComponentCount();
    System.out.println("Total components :" +count);
    for ( int i = 0; i < count; i++ ) {
    Component c = getComponent(i);
    if ( c instanceof javax.swing.JComboBox ) {
    System.out.println("Selected index in combo " i+" :"+( (JComboBox) c ).getSelectedIndex() );

  • How to make menu to auto close when a menu item is selected?

    hi ...my question is described above..
    to make things clearer i have written a mini code to demonstrate my problem
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    /* just a frame with a JMenuBar with a JMenu with two RadioButtons
    public class myFrame2 extends JFrame implements ActionListener{
         JMenuBar mb ;
         JMenu mi;
         JRadioButton rb1;
         JRadioButton rb2;
         public myFrame2(){
              super();
              mb = new JMenuBar();
              mi = new JMenu("New");
              rb1 = new JRadioButton("Button 1");
              rb1.addActionListener(this);
              rb1.setActionCommand("action1");
              rb2 = new JRadioButton("Button 2");
              rb2.addActionListener(this);
              rb2.setActionCommand("action2");
              mi.add(rb1);
              mi.add(rb2);
              mb.add(mi);
              setJMenuBar(mb);
              pack();
              setVisible(true);
         @Override
         public void actionPerformed(ActionEvent e) {
              // Do something......
         public static void main(String args[]){
              new myFrame2();
    }If you run this program you will see that when you select a RadioButton the menu doesn't hide ...
    How can i make it hide when a menu item (JradioButton) is selected?
    thanks in advance
    Edited by: Pitelk on Jun 10, 2008 7:42 AM

    On a menu use JRadioButtonMenuItem.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class JRadioButtonMenuItemExample {
        public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable(){
                public void run() {
                    launch();
        static void launch() {
            JMenuBar mb = new JMenuBar();
            JMenu menu = new JMenu("menu");
            mb.add(menu);
            ButtonGroup bg = new ButtonGroup();
            JRadioButtonMenuItem item1 = new JRadioButtonMenuItem("alpha");
            bg.add(item1);
            menu.add(item1);
            JRadioButtonMenuItem item2 = new JRadioButtonMenuItem("beta");
            bg.add(item2);
            menu.add(item2);
            JRadioButtonMenuItem item3 = new JRadioButtonMenuItem("gamma");
            bg.add(item3);
            menu.add(item3);
            JFrame f = new JFrame();
            f.setJMenuBar(mb);
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.setSize(400, 300);
            f.setLocationRelativeTo(null);
            f.setVisible(true);
    }

Maybe you are looking for

  • Getting error message, need help

    Hi there, at the moment I have the following query: select cust_no, cust_address, cust_phoneno from customer natural join (select cust_no from businesscust minus select cust_no from rental); This query outputs perfectly fine, with no errors. However,

  • Photosmart D110 losing network connection - I have to reboot my router every time I print

    Every time I have to print the printer cannot be found by any device (desktop (mac and windows), laptop, iphone, or ipad). The printer says it is connected to the wireless network, but no device can see it and the desktops show it as offline. The onl

  • Display and Upload attachments to Opportunities

    Hi, We are building an external Application for the CRM in WebDynpro for Java. 1. We need to attache (upload) documents to opportunities 2. We need to display attachments of opportunities These two actions should be performed using RFCs because this

  • Updated to 11.1.4 missing files

    I just updated to 11.1.4 and now all my playlists are gone. I was creating one when I updated and now thats even gone. HELP!

  • My iPhone 4s keeps crashing for no reason - any ideas?

    MY new iPhone 4s keeps crashing for no reason. Any ideas? Also, the camera is permanently lit up on the back of the phone- is this normal.?