JTabbedPane, switch of auto resizing of the tab header possible?

Hi,
Is it possible to prevent the tab header from auto resizing?
In this code the tab "Page 1" fills the whole row at start up, but I would like to prevent it from taking more space than needed.
import java.awt.*;
import javax.swing.*;
class TabbedPaneExample
        extends     JFrame
    private        JTabbedPane tabbedPane;
    private        JPanel        panel1;
    private        JPanel        panel2;
    private        JPanel        panel3;
    public TabbedPaneExample()
        // NOTE: to reduce the amount of code in this example, it uses
        // panels with a NULL layout.  This is NOT suitable for
        // production code since it may not display correctly for
        // a look-and-feel.
        setTitle( "Tabbed Pane Application" );
        setSize( 140, 200 );
        setBackground( Color.gray );
        JPanel topPanel = new JPanel();
        topPanel.setLayout( new BorderLayout() );
        getContentPane().add( topPanel );
        // Create the tab pages
        createPage1();
        createPage2();
        createPage3();
        // Create a tabbed pane
        tabbedPane = new JTabbedPane();
        tabbedPane.addTab( "Page 1", panel1 );
        tabbedPane.addTab( "Page 2", panel2 );
        tabbedPane.addTab( "Page 3", panel3 );
        topPanel.add( tabbedPane, BorderLayout.CENTER );
    public void createPage1()
        panel1 = new JPanel();
        panel1.setLayout( null );
    public void createPage2()
        panel2 = new JPanel();
        panel2.setLayout( new BorderLayout() );
    public void createPage3()
        panel3 = new JPanel();
        panel3.setLayout( new GridLayout( 3, 2 ) );
    // Main method to get things started
    public static void main( String[] args )
        // Create an instance of the test application
        TabbedPaneExample mainFrame    = new TabbedPaneExample();
        mainFrame.setVisible( true );
}Edited by: user6102378 on 2010-okt-07 06:51

Unfortunately, the answer seems to be "no" - looks like the exact behaviour is even different across different LAFs. Nothing short of re-writing the layout code in the xxTabbedPaneUI will help.
Just curious: how comes that we have so many tabbedPane related questions recently?
Cheers
Jeanette

Similar Messages

  • I put a Favicon on my website, which can be seen in the adress line and the tab header. However, when I add this site to the bookmarks, it doesn't show it's favicon.

    I put a Favicon on my website, which can be seen in the adress line and the tab header. However, when I add this site to the bookmarks, it doesn't show it's favicon. I have tried deleting and creating a bookmark and also refreshing the webpage or clicking on the bookmark. I don't know what else to do. I use Firefox 4.0.1

    I'm getting favicons for most of my bookmarks, so there might be some issue with the coding or the image format.
    Do you use a tag like this in your page?
    <link rel="shortcut icon" href="/path/to/favicon.ico"/>

  • How to stop irritating auto-reloading of the tabs (pages) [i don't have any extensions or apps]

    Seems like this problem appeared quite often, nevertheless i spent an hour in search of an answer surfing the net, alas, nothing..
    Problem: since today Safari started to reload almost every single page whenever i switch between tabs or sometimes even while im stil on the page. Fot example - i'm watching a movie, stoped it - switched to facebook tab to reply to my friend, then back to the tab with the video & no sooner i get back as the page with video auto-refreshes itself & i have to load movie again & look for the place i stoped watching the video to continue!
    Device & program version: Macbook Pro, bought in july, Safari Version 5.1 (6534.50), No extensions or apps installed, & pls dont' say that it happens on particular pages, i visited the same ones yesterday & everything was ok, since today it's working all weird, and happens within all pages. But in the same time no system - once it reloads the page, other time im switching between the same very tabs it doesn't.
    This is unacceptable & completely useless. Why there are no comments from Apple or Safari team, as if the problem doesnt exist? Not speaking of the problem solving process or tips.
    Please, if someone knows how to stop this nightmare - tell me!!
    Apple-team, I would love to hear your comments & in fact receive some help and get this problem fixed.. :\
    (P.S. - person with the same problem posted a message year before, no effective reply.. - https://discussions.apple.com/thread/2356901?start=0&tstart=0 )
    Sincerily yours,
    Tatevik
    <Email Edited by Host>

    Macbook Pro, bought in july
    If your Mac is runing Lion v10.7 try disabling Resume.
    How To Disable Lion's 'Resume' Feature - MacRumors.com

  • Changing the tab heading

    hi mm gurus
    how we can change the tab headings in PR, PO in customizing.
    give me the path
    thanks
    subbu

    If the names defined in the system do not correspond with your companyu2019s terminology, you can assign your own names to purchasing documents. However, you cannot change the names of sales documents.
    You can change by Administration -> System Initialization -> Document Numbering. -> Change Name
    Enter your own specific names for:
    ■      Purchase orders
    ■      Goods receipt POs
    ■      Goods returns
    ■      AP invoices
    ■      Purchasing credit memos

  • Erase all content and is not switching on but waiting on the skull head apple ?

    Hi i have press the erase content on my ipod touch and is waiting on the skull head for more than 1 hor dont know what to do is it broken?

    Yes, it is broken. The iPod has been jailbroken. That means you will not get support from Apple including from this Apple forum.

  • How can i get my webview to auto-resize with the size of a window in xcode (Mac App)

    Hello, i am developing a Mac app with xCode on my macbook air but i am having one issue i have a web view but i cant get it to resize with a window and currently the web view is activated by a button as i diddnt know the coding to make it automated.
    Any help is appreciated.

    Best option is to use Windows Migration Assistant as Ralph noted.
    Here's a better (updated) link to Windows Migration Assistant for Lion -> http://support.apple.com/kb/HT4796
    Or if you only want iTunes (Migration Assistant let's you choose) copy the entire /Music/iTunes/ folder from your PC to /Music/ on the Mac.
    FYI: A MacBook is not a PowerBook. PowerBooks were discontinued in 2005.

  • TableView auto resize columns based on header text width or cell content

    Is there a method on the tableview or tablecolumn to automatically resize based on the content of the hearder or data?
    If not what approach can used used with JavaFX to calculate the string width based on the current font?

    The table column size is inconsistent, I set the columns in the table view and the items in the initialize method. I execute a service and task from a button action that loads data into the list, if I don't reset the columns in the table view in the succeed method then each column is the same width regardless of the content in the cells. If I do reset the table columns in the succeed method then the columns are resized based on content.
    I don't think it should be a requirement to reset the columns just to get the column widths to set based on the content in the cells. Is there a method on the table column or view that will resize the cells based on the cell content? I would prefer the largest value; column header content or the longest cell content for a column.

  • How can we prevent JTabbedPanes from transferring focus to components outside of the tabs during tab traversal?

    Hi,
    I noticed a strange focus traversal behavior of JTabbedPane.
    During tab traversal (when the user's intention is just to switch between tabs), the focus is transferred to a component outside of the tabs (if there is a component after/below the JTabbedPane component), if using Java 6. For example, if using the SSCCE below...
    import java.awt.BorderLayout;
    import java.awt.event.FocusAdapter;
    import java.awt.event.FocusEvent;
    import java.awt.event.KeyEvent;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTabbedPane;
    import javax.swing.JTextField;
    import javax.swing.SwingUtilities;
    public class TabbedPaneTest extends JPanel {
        public TabbedPaneTest() {
            super(new BorderLayout());
            JTabbedPane tabbedPane = new JTabbedPane();
            tabbedPane.addTab("Tab 1", buildPanelWithChildComponents());
            tabbedPane.setMnemonicAt(0, KeyEvent.VK_1);
            tabbedPane.addTab("Tab 2", buildPanelWithChildComponents());
            tabbedPane.setMnemonicAt(1, KeyEvent.VK_2);
            tabbedPane.addTab("Tab 3", buildPanelWithChildComponents());
            tabbedPane.setMnemonicAt(2, KeyEvent.VK_3);
            tabbedPane.addTab("Tab 4", buildPanelWithChildComponents());
            tabbedPane.setMnemonicAt(3, KeyEvent.VK_4);
            JPanel panel = new JPanel(new BorderLayout());
            panel.add(tabbedPane);
            JButton button = new JButton("Dummy component that gains focus when switching tabs");
            panel.add(button, BorderLayout.SOUTH);
             * To replicate the focus traversal issue, please follow these steps -
             * 1) Run this program in Java 6; and then
             * 2) Click on a child component inside any tab; and then
             * 3) Click on any other tab (or use the mnemonic keys ALT + 1 to ALT 4).
            button.addFocusListener(new FocusAdapter() {
                @Override
                public void focusGained(FocusEvent e) {
                    System.err.println("Gained focus (not supposed to when just switching tabs).");
            add(new JScrollPane(panel));
        private JPanel buildPanelWithChildComponents() {
            JPanel panel = new JPanel();
            BoxLayout boxlayout = new BoxLayout(panel, BoxLayout.PAGE_AXIS);
            panel.setLayout(boxlayout);
            panel.add(Box.createVerticalStrut(3));
            for (int i = 0; i < 4; i++) {
                panel.add(new JTextField(10));
                panel.add(Box.createVerticalStrut(3));
            return panel;
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    JFrame frame = new JFrame("Test for Java 6");
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.add(new TabbedPaneTest());
                    frame.pack();
                    frame.setVisible(true);
    ... Then we can replicate this behavior by following these steps:
    1) Run the program in Java 6; and then
    2) Click on a child component in any of the tabs; and then
    3) Click on any other tab (or use the mnemonic keys 'ALT + 1' to 'ALT + 4').
    At step 3 (upon selecting any other tab), the focus would go to the component below the JTabbedPane first (hence the printed message in the console), before actually going to the selected tab.
    This does not occur in Java 7, so I'm assuming it is a bug that is fixed. And I know that Oracle suggests that we should use Java 7 nowadays.
    The problem is: We need to stick to Java 6 for a certain application. So I'm looking for a way to fix this issue for all our JTabbedPane components while using Java 6.
    So, is there a way to prevent JTabbedPanes from passing the focus to components outside of the tabs during tab traversal (e.g. when users are just switching between tabs), in Java 6?
    Note: I've read the release notes between Java 6u45 to Java 7u15, but I was unable to find any changes related to the JTabbedPane component. So any pointers on this would be deeply appreciated.
    Regards,
    James

    Hi Kleopatra,
    Thanks for the reply.
    Please allow me to clarify first: Actually the problem is not that the child components (inside tabs) get focused before the selected tab. The problem is: the component outside of the tabs gets focused before the selected tab. For example, the JButton in the SSCCE posted above gets focused when users switch between tabs, despite the fact that the JButton is not a child component of the JTabbedPane.
    It is important for me to prevent this behavior because it causes a usability issue for forms with 'auto-scrolling' features.
    What I mean by 'auto-scrolling' here is: a feature where the form automatically scrolls down to show the current focused component (if the component is not already visible). This is a usability improvement for long forms with scroll bars (which saves the users' effort of manually scrolling down just to see the focused component).
    To see this feature in action, please run the SSCCE below, and keep pressing the 'Tab' key (the scroll pane will follow the focused component automatically):
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.Insets;
    import java.awt.event.FocusAdapter;
    import java.awt.event.FocusEvent;
    import java.awt.event.KeyEvent;
    import javax.swing.JButton;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTabbedPane;
    import javax.swing.JTextField;
    import javax.swing.JViewport;
    import javax.swing.SwingUtilities;
    public class TabbedPaneAutoScrollTest extends JPanel {
        private AutoScrollFocusHandler autoScrollFocusHandler;
        public TabbedPaneAutoScrollTest() {
            super(new BorderLayout());
            autoScrollFocusHandler = new AutoScrollFocusHandler();
            JTabbedPane tabbedPane = new JTabbedPane();
            tabbedPane.addTab("Tab 1", buildPanelWithChildComponents(20));
            tabbedPane.setMnemonicAt(0, KeyEvent.VK_1);
            tabbedPane.addTab("Tab 2", buildPanelWithChildComponents(20));
            tabbedPane.setMnemonicAt(1, KeyEvent.VK_2);
            tabbedPane.addTab("Tab 3", buildPanelWithChildComponents(20));
            tabbedPane.setMnemonicAt(2, KeyEvent.VK_3);
            tabbedPane.addTab("Tab 4", buildPanelWithChildComponents(20));
            tabbedPane.setMnemonicAt(3, KeyEvent.VK_4);
            JPanel panel = new JPanel(new BorderLayout());
            panel.add(tabbedPane);
            JButton button = new JButton("Dummy component that gains focus when switching tabs");
            panel.add(button, BorderLayout.SOUTH);
             * To replicate the focus traversal issue, please follow these steps -
             * 1) Run this program in Java 6; and then
             * 2) Click on a child component inside any tab; and then
             * 3) Click on any other tab (or use the mnemonic keys ALT + 1 to ALT 4).
            button.addFocusListener(new FocusAdapter() {
                @Override
                public void focusGained(FocusEvent e) {
                    System.err.println("Gained focus (not supposed to when just switching tabs).");
            button.addFocusListener(autoScrollFocusHandler);
            JScrollPane scrollPane = new JScrollPane(panel);
            add(scrollPane);
            autoScrollFocusHandler.setScrollPane(scrollPane);
        private JPanel buildPanelWithChildComponents(int numberOfChildComponents) {
            final JPanel panel = new JPanel(new GridBagLayout());
            final String labelPrefix = "Dummy Field ";
            final Insets labelInsets = new Insets(5, 5, 5, 5);
            final Insets textFieldInsets = new Insets(5, 0, 5, 0);
            final GridBagConstraints gridBagConstraints = new GridBagConstraints();
            JTextField textField;
            for (int i = 0; i < numberOfChildComponents; i++) {
                gridBagConstraints.insets = labelInsets;
                gridBagConstraints.gridx = 1;
                gridBagConstraints.gridy = i;
                panel.add(new JLabel(labelPrefix + (i + 1)), gridBagConstraints);
                gridBagConstraints.insets = textFieldInsets;
                gridBagConstraints.gridx = 2;
                textField = new JTextField(22);
                panel.add(textField, gridBagConstraints);
                textField.addFocusListener(autoScrollFocusHandler);
            return panel;
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    JFrame frame = new JFrame("Test for Java 6 with auto-scrolling");
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.add(new TabbedPaneAutoScrollTest());
                    frame.setSize(400, 300);
                    frame.setVisible(true);
    * Crude but simple example for auto-scrolling to focused components.
    * Note: We don't actually use FocusListeners for this feature,
    *       but this is short enough to demonstrate how it behaves.
    class AutoScrollFocusHandler extends FocusAdapter {
        private JViewport viewport;
        private JComponent view;
        public void setScrollPane(JScrollPane scrollPane) {
            viewport = scrollPane.getViewport();
            view = (JComponent) viewport.getView();
        @Override
        public void focusGained(FocusEvent event) {
            Component component = (Component) event.getSource();
            view.scrollRectToVisible(SwingUtilities.convertRectangle(component.getParent(),
                    component.getBounds(), view));
    Now, while the focus is still within the tab contents, try to switch to any other tab (e.g. by clicking on the tab headers, or by using the mnemonic keys 'ALT + 1' to 'ALT + 4')...
    ... then you'll notice the following usability issue:
    1) JRE 1.6 causes the focus to transfer to the JButton (which is outside of the tabs entirely) first; then
    2) In response to the JButton gaining focus, the 'auto-scrolling' feature scrolls down to the bottom of the form, to show the JButton. At this point, the tab headers are hidden from view since there are many child components; then
    3) JRE 1.6 transfers the focus to the tab contents; then
    4) The 'auto-scrolling' feature scrolls up to the selected tab's contents, but the tab header itself is still hidden from view (as a side effect of the behavior above); then
    5) Users are forced to manually scroll up to see the tab headers whenever they are just switching between tabs.
    In short, the tab headers will be hidden when users switch tabs, due to the Java 6 behavior posted above.
    That is why it is important for me to prevent the behavior in my first post above (so that it won't cause usability issues when we apply the 'auto-scrolling' feature to our forms).
    Best Regards,
    James

  • How to set the default action of slide switch to auto-rotate

    Is there a way to set the default action of the slide switch to auto-rotate during the OS loading instead of volume setting?

    You change the function of the side switch with Settings -> General -> Use side switch to:
    I don't know what you mean by, "during the OS loading".

  • Something is wrong with Firefox's image auto resize

    In forums, when I post an image, it's seems to be doing an incorrect image auto resize, for the image is still large to be fit in the websites' pages, and when I CTRL+Scroll, the browser makes a proper resize though making the letters and numbers smaller.

    Resizing images automatically only works if you open an image in a tab and there is only that image to be shown. In all other cases it is the website that determines how large an image is displayed.<br />
    If you post an image on a forum and the forum doesn't resize the image automatically then use an upload host that automatically generates a thumbnail that you can show and that opens the full sized image if you click the thumbnail.

  • How do I turn off "image auto-resizing"?

    After upgrading to version 3.6.3, the browser is now auto-scaling my images. I turned off "auto-resizing" on the About:Config page (in other words, setting that parameter to "false") but Firefox is still auto-scaling my images. How can I prevent this?
    == This happened ==
    Every time Firefox opened
    == I upgraded to version 3.6.3

    If you have set the pref '''browser.enable_automatic_image_resizing''' to ''false'' on the '''about:config''' page then Firefox shouldn't resize images.
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    Reset the page zoom on pages that cause problems: '''View > Zoom > Reset''' (Ctrl+0 (zero); Cmd+0 on Mac)
    See [[Text Zoom]] and [[Page Zoom]] and http://kb.mozillazine.org/Zoom_text_of_web_pages
    .

  • Switches window when I use the transport control

    Hello
    I have downloaded Audition CS5.5 trial version. When I'm in Mixer Mode and press the transport buttons in the transport panel (exept play, stop and pause) it switch the window to the Editor mode. Can anyone help? Macbook Pro 17 "- 2.5 GHz IntelCore Duo 4GB RAM, OSX 10.6.8
    Bjorn

    I have just checked and it is the same on a PC. There is some confusion because AA CS5.5 now calls the tabs heading the Multitrack view Editor and Mixer, whereas previously Audition called the new Waveform view the Edit view.
    So, yes, clicking on any of the Transport Fast Forward, Rewind, Move to Next or Previous does switch automatically to the main Multitrack view because it assumes that if you do anything but Play, Pause or Stop then you need to see the waveform to be able to identify where you are going in the audio file. But I can see that it might be useful to be able to move between markers whilst staying in the Mixer view. However if you have the Markers window open you can double click in there on your markers to move between them without leaving the Mixer view.

  • Auto Resizing of ChartPanel

    I have created a chart with the jfreechart package and placed it on a ChartPanel which I then added to a JPanel. The JPanel is auto-resizable in the horizontal direction so when the user resizes the window, the panel stretches horizontally to fill the width of the window. However the ChartPanel doesn't resize automatically. I would like this to happen also. Is there some way to do this?
    I have included the method that I use to create the chart, chartpanel and place everything on the JPanel.
    private void updateGraph()
    dataset = new DefaultCategoryDataset();
    for (int i=0;i<pickerIDs.length;i++)
    dataset.setValue(linesPerPicker, "x/y", pickerIDs[i]);
    barChart = ChartFactory.createBarChart("Picker Statistics", // Title
    "Picker ID", // Horiz units
    "Total Lines", // Vert units
    dataset,
    PlotOrientation.VERTICAL,
    false, // legend
    true, // tooltips
    false); // urls
    // Place on a chart panel
    chartPnl = new ChartPanel(barChart);
    chartPnl.setSize( jPanel1.getWidth(), jPanel1.getHeight());
    jPanel1.removeAll();
    jPanel1.add(chartPnl);
    jPanel1.validate();
    jPanel1.repaint();

    Hi, thanks for responding.
    I did the following, hoping that this is what you meant by using a BorderLayout but the results are the same (BTW - Although I am familiar with Java, I am new to Java GUI):
        private void updateGraph()
            dataset = new DefaultCategoryDataset();
            for (int i=0;i<pickerIDs.length;i++){
                dataset.setValue(linesPerPicker, "x/y", pickerIDs[i]);
    barChart = ChartFactory.createBarChart("Picker Statistics", // Title
    "Picker ID", // Horiz units
    "Total Lines", // Vert units
    dataset,
    PlotOrientation.VERTICAL,
    false, // legend
    true, // tooltips
    false); // urls
    // Place on a chart panel
    chartPnl = new ChartPanel(barChart);
    chartPnl.setSize( jPanel1.getWidth(), jPanel1.getHeight());
    chartPnl.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
    jPanel1.removeAll();
    jPanel1.add(chartPnl, BorderLayout.EAST);
    jPanel1.validate();
    jPanel1.repaint();

  • The current version of Firefox moves the tabs. Now the focus moves off the end of the row. I think this runs counter to the point of having tabs, if you can only see one at a time. How do I fix this

    The tabs bar on 3.6 Firefox now focuses on the last tab in the row. This means that I can only effectively see one tab, unless I use the arrow button to scroll back through all the tabs. I am used to scrolling some, when there are a dozen tabs open, but How do I make the tab bar static, they way it used to be, so it stands still when I click on the last tab in the row.??

    Thanks for taking a stab at it: that didn't prove to be the problem. That option in the settings for tabbed browsing was not checked.
    I may be a bit behind the times: I am used to tabbed browsing showing all the tabs it possibly can, instead of just the last one. Sometimes it won't even show the last tab: I can have 15 tabs open, and not see a single tab. I've been confused by this into closing a window with lots of tabs open, because it looks like a single page-window.
    My main problem with the tab-bar flashing to the end of the row is that it means a great deal more mouse-clicking around to browse.
    I haven't tried installing the latest beta. Maybe that would fix the problem.
    Toddo

  • Change the tab color

    Hi,
    i'm unable to change the tab color of panelTabbed item, i've tried the following in a css sheet:
    af|panelTabbed::tab:selected {
    font-style:italic;
    background-image: url("../Images/section_label_body.jpg");
    border-bottom-color: red;
    border-color: Fuchsia ;
    border-top-color: Green;
    outline-color: Yellow;
    color: Aqua;
    font style and background image seems to work (which tells me that i have the right skin selector) but non of the rest is changing the color of the tab.
    does anyone knows how to do that???????
    Note that when i say tab i mean the tabs header, where you click on it and it opens the tab body.
    Thanks,
    Alain.

    Hi,
    best tip I can give is:
    Disable content compression for the generated HTML output of the ADF Faces page. This will change the style class names from being obfuscated, which we use to reduce the download size of pages. Astyle class that shows as .x3s at runtime might show as af_inputText_content after this. The af_inputText_content then is waht you need to discover and translate into a valid skin selector.
    <context-param>
    <param-name>org.apache.myfaces.trinidad.DISABLE_CONTENT_COMPRESSION</param-name>
    <param-value>true</param-value>
    </context-param>
    Run the ADF Faces application you want to discover the skin selector for in FF with Firebug and the WebDeveloper plugin installed.
    Select the tab and look at the skin selectors displayed as the style class properties. If you find someting like af_panelTabbed_tab then this translates to af|panelTabbed::tab. If you see something like .p_selected then this means its a pseudo class that needs to be appended to the selector like af|panelTabbed::tab:selected.
    Use Firebug in inspect mode and select the tab. This shows you all the selectors as style classes in the generated HTML output. Open the Web Developer plugin to edit CSS on the page. Then add the style class selector you found, e.g. .af_panelTabbed_tab (note the leading dot ".") or with a curly brace
    .af_panelTabbed_tab{ ... }
    Within the cury braces, type the CSS you want to set and see how it behaves. You may have to play a bit to exactly find the style class and css you want, but assuming that the follwing works
    .af_panelTabbed_tab .p_selected{background-color:red}
    then this translates to teh following skin selection to be copied to the CSS skin file
    af|panelTabbed::tab:selected{background-color:red}
    Note that this backward translation from style class to skin selector needs some patience. However, experience proves to be the best when cooking and so it does for skinning.
    Hope this helps
    Frank

Maybe you are looking for

  • Error while Deleting DC from the Track

    Hello All, Please anyone one tell me the precedure for deleting the DC from the track. The Procedure I Followed is,Deleting the folders in _comp directory of the DC in the local system(local workspace where DC is stored). synchronizing the DC in Deve

  • Error no boot disk has been detected or the boot disk has failed

    I'm having a problem with my PC and I do not know what to do please help?

  • Set up of System Monitoring with SPS 15 only through "Work center"

    Hi! We use SAP Solution Manager SPS 15 and would like to set up System Monitoring function in order to monitor satellite systems. Is is only possible as of SPS 15 with tcode "solman_workcenter"? I have heared as of SPS 15 the tcode "dswp" provides on

  • Losing hyperlinks when linking word documents

    We use RoboHelp version 9.0 Project description We have a Parent project with 7 child projects. Each child project has, on an average, 40 files. The files in each child project are linked to word documents. Every time we have updates to content, we u

  • Does XE support Bitmap Indexes?

    Hi, I am trying to create a bitmap index in XE and getting the following error: ORA-00439: feature not enabled: Bit-mapped indexes I am guessing this is only available in the enterprise editions of the database or is there some way i can enable this