Help with Tabs

Hello,
I've never had to modify tabs after creating the pages, and I am having some issues with it. I had to delete the tabs that were created when I created the pages, and I thought re-creating them would be easy. However the tabs do not show when the page is run and the tabs do not even show in the Tabs region when editing a page. Can someone look at my example on apex.oracle.com and let me know what step I am missing?
Thanks,
-- Johnnie
workspace: paet
user: dev
pw: demo
application: 23282
page: 1

In your display attributes for the page, make sure that a Tab Set is selected, and it matches the tab set that the tab actually exists in.
David

Similar Messages

  • Help with tabbed pane

    hello!
    i have a tabbed pane with two tabs.
    in tab1 i have a button(for example), how can i do that when i press the button in tab1 it will draw something in tab2?
    i tried to do this but it draw what i want in tab1(the tab with the button)
    if the source code will help i will post it here
    sorry for my bad english

    here's something to play around with
    (I've simplified it by putting it all in paintComponent, but it should be changed
    to get the image, if not null then repaint)
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.net.URL;
    import javax.imageio.ImageIO;
    class Testing extends JFrame
      JTabbedPane tp = new JTabbedPane();
      JPanel p1 = new JPanel();
      MyJPanel p2 = new MyJPanel();
      public Testing()
        setSize(400,400);
        setLocation(300,200);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        JButton btn = new JButton("Set image");
        btn.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent ae){
            p2.imageFile = "Test.gif";
            p2.repaint();}});
        p1.add(btn);
        tp.addTab("Tab 1",p1);
        tp.addTab("Tab 2",p2);
        getContentPane().add(tp);
      public static void main(String[] args){new Testing().setVisible(true);}
    class MyJPanel extends JPanel
      String imageFile = null;
      public void paintComponent(Graphics g)
        super.paintComponent(g);
        if(imageFile != null)
          try
            URL url = new URL(getClass().getResource(imageFile), imageFile);
            Image img = ImageIO.read(url);
            g.drawImage(img, 50,50,this);
          catch(Exception e){JOptionPane.showMessageDialog(null,"Image error");}
    }

  • Help with tabs on a site created by iWeb '09

    Hi All,
    I created a site through iWeb and the only problem I am having is that on the "home" page, when viewing the site online, it looks great and normal, but on the other pages within the site, the title of the site disappears from the tab above. For example, if you are in safari and click file, new tab, you should see the title/name of the site on the tab. On my site, you can only see the name of the site when on the home page. When clicking on any other part of the site, the name of the tab disappears and is blank. Can anyone help? I can't figure out how to fix this...
    Thanks so much.

    Real info, such as an URL to your page, would help.

  • Help with Tabbed panels please

    Hello,
    Can someone please tell me how I can change the color of the background of the tabs in tabbed panels.  They are a grey and I can go into each tab and set a new color and when that tab is chose, the new color shows, but when I click on the next panel tab, the prvious one background goes back to grey.  How do I get that whole grey background color changed?
    Did I confuse everyone because I think I confused myself lol
    Thanks if you can help!
    Kathleen

    THank you very much!!

  • Need some help with Tab Strip

    Hello Experts,
    I have a got a scenario where I have 4 option button on the page & Tabstrip having 4 tabs below that.
    Based on the options he chooses I need to make those tabs visible or invisible.
    Can any one of you suggest me how can I do it.
    PS:
    I tried creating a Value attribute with Boolean as a type & assigned it to the Visibility of the Tab.
    This think works but the problem is after selecting the options the tabs are collapsed on each other..so user cant see it unless he goes onto the navigation & choose the appropriate one.
    Thanks in advance.

    Hi,
    Create an string type attribute as selectedTab and bind it to the SelectedTab property of the TabStrip.
    In the action of your option button, set the name / id of tab that you want to display in the selectedTab attribute so that the tab gets displayed
    Lets the tabs are Tab1, Tab2, Tab3 and Tab4. Now on a button click you want Tab3 to be displayed then on the action of button write the code as
    wdContext.currentContextElement().setselectedTab('Tab3');
    Regards,
    Amol

  • Help with tabs, I reset but doesn't fix problem when started again

    When started the new tab is blank and doesn't show the 9 previous pages like before. I have gone to help the troubleshooting and then reset Firefox. This works until I shut down Firefox although when I start a new session the New Tabs are Blank again.
    please help.

    Is the new tab page completely blank or is there a little 9-square icon on the right side? If that's there, can you check your history and make sure your history wasn't cleared?
    In the future, you shouldn't need to do a full reset to edit this preference. In fact, it would be helpful to take a look at what is there when this problem occurs. This involves using the about:config preferences editor:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box above the list, type or paste '''newtab''' and pause while the list is filtered
    (3) Double-click the '''browser.newtab.url''' preference and enter your preferred page:
    * ''Page thumbnails (default)'' => about:newtab
    * ''Blank tab'' => about:blank
    * ''Built-in Firefox home page'' => about:home
    * ''Any other page'' => full URL to the page
    Press Ctrl+t to open a new tab and verify that it worked. Fixed?
    If it's fixed temporarily, does it stick until you exit Firefox and restart it? Sometimes preferences will be changed at startup by a user.js file. This file isn't created by Firefox, but can be created by a user or third party software to override your regular settings. To check for a user.js file, try the steps in this article: [[How to fix preferences that won't save]].

  • Help with "Tabbed panels"

    Hi guys,
    i am trying to design a web for my company. The company devided in to three parts. Every part has a slightly different menu.
    I assume i could use "tabbed panels" for that purpose but the contents of tabs are changed only on mouse click. I would like people to hover on main menu button and submenu contents are changing...the same for all three main menu buttons. Each main menu buttons has about 7 or 8 submenus.
    Is it possible for you to point me to a step by step tutorials to do it?
    Thank you very much

    Hi,
    I suggest that you put your question into the Spry forum, 'cause there are acting most of the specialists around this topic. Here the link to it:
    http://forums.adobe.com/community/labs/spry?view=discussions
    Hans-Günter

  • Need help with tabbed panes

    I am creating an App that uses tabbed pane.
    The first tab is for loggin in.
    What I want to do is make all the other tabs invisible until the user has successfully logged in.
    How do I make the other tabs invisible?

    Hi,
    One way is to add them after the user has logged in. Another way is to disable them so that the user can't use them.
    Btw. I have to say that what you want to do sounds weird. Normally you use a modal login dialog instead.
    /Kaj

  • Help with validation on a manually created tabbed form

    version 4.1.1.00.23
    Hello,
    I have a manually created tabbed form that I'm having trouble creating validation on.
    The page is a Resource Staffing page where PM's can forecast the Resources that will be needed for various projects. The forecast can be for 12 - 18 months.
    The requirement is to display a message to the user if they are trying to save a row without forecasting any time. It's possible they may not know how may Resources or the length of time needed when the row is created.  If they respond that they want to save the row without time the MRU will create the record. If they answer that they do not want to save the row they are returned to the page without loss of information.
    The month fields on the page are defaulting to 0 (zero).
    I've updated the Save button to Redirect to URL and in the URL Redirect I have: javascript:confirmNoTimeSaved()
    The javascript:
    [code]
    function confirmNoTimeSaved()
        var arr_jan,arr_feb,arr_mar,arr_apr,arr_may,arr_jun,arr_jul,arr_aug,arr_sep,arr_oct,arr_nov,arr_dec = new Array();
            arr_jan = document.wwv_flow.f07;
            arr_feb = document.wwv_flow.f08;
            arr_mar = document.wwv_flow.f09;
            arr_apr = document.wwv_flow.f10;
            arr_may = document.wwv_flow.f11;
            arr_jun = document.wwv_flow.f12;
            arr_jul = document.wwv_flow.f13;
            arr_aug = document.wwv_flow.f14;
            arr_sep = document.wwv_flow.f15;
            arr_oct = document.wwv_flow.f16;
            arr_nov = document.wwv_flow.f17;
            arr_dec = document.wwv_flow.f18;
        for(i = 0; i < arr_jan.length; i++)
            if(arr_jan[i].value == 0 && arr_feb[i].value == 0 && arr_mar[i].value == 0
                && arr_apr[i].value == 0 && arr_may[i].value == 0 && arr_jun[i].value == 0
                && arr_jul[i].value == 0 && arr_aug[i].value == 0 && arr_sep[i].value == 0
                && arr_oct[i].value == 0 && arr_nov[i].value == 0 && arr_dec[i].value == 0)
                txt = 'You have no time assigned to your Forecast. Do you want to save this Forecast without time entered?' + '\n' + '\n' + '"Yes" to save the Forecast.' + '\n' + '"No" to return with no changes.';
                caption = 'Confirm Saving With No Time';
                vbMsg(txt,caption)
                switch (isChoice)
                    case 6:
                        doSubmit('SUBMIT');
                        break;
                    case 7:
                        doSubmit('CANCEL2');
                        break;
            else
                doSubmit('SUBMIT');   
                break;
    </script>
    <script language="VBScript">
    <!--
    //Yes    = 6
    //No     = 7
        Function vbMsg(isTxt,isCaption)
            testVal = MsgBox(isTxt,vbYesNo,isCaption)
            isChoice = testVal
        End Function
    //-->
    </script>
    [/code]
    The 'CANCEL2' is just a Branch I'm using to branch back to the page without clearing Cache. I do have 'Cancel' button on the page and the Branch created for that clears the Cache.
    While debugging the javascript I get into the VB Script on the testVal = MsgBox(isTxt,vbYesNo,isCaption) line and the browser crashes.
    Can someone help with this requirement?
    What additional information can I provide?
    Thanks,
    Joe

    The code above is my attempt at this requirement, however, the browser crashes when it gets to the VBScript on the MsgBox call. I don't have to use this approach. Does someone have an idea how to solve this?
    Thanks,
    Joe

  • Help with spry tabbed menu bar

    Hi.
    I need help with the spry tabbed menu panel (horizontal) It
    works fine in dreamweaver ( pressing f12 ) but when i goto my
    website www.so-nouveau.com it puts it all over and not in boxes
    either just the writing.
    I ahve double checked all uploading is correct and files are
    located but it wont work.
    Here is what i did >
    new> html> 1 column elastic,centered. i have not
    changed any other settings at all. Do i need to change the doc type
    or css layout in the drop down menus before starting (doc
    type=xhtnl 1.0 transitional and layout css=add to head)
    I am still on cs3 , does this matter ? or is 4 easier ?
    any help out there guys is much appreciated but please bear
    in mind that i am not a web designer or pc expert at all , this is
    just me building my own site , until nowit has been an enjoyable
    experience but grrrrrr when it dont work
    Thanks
    Jay

    so-nouveau wrote:
    > Hi.
    > I need help with the spry tabbed menu panel (horizontal)
    It works fine in
    > dreamweaver ( pressing f12 ) but when i goto my website
    www.so-nouveau.com it
    > puts it all over and not in boxes either just the
    writing.
    Please post links directly to the page having an issue. I saw
    no tabs on the home page, but I noticed that there is a link on the
    bottom of the page to this page that has a Spry tab on it:
    http://www.so-nouveau.com/test%208.html
    > I ahve double checked all uploading is correct and files
    are located but it
    > wont work.
    That page refers to a Spry JavaScript file and a Spry CSS
    file, which should be at the following locations but are not
    present:
    http://www.so-nouveau.com/SpryAssets/SpryTabbedPanels.js
    http://www.so-nouveau.com/SpryAssets/SpryTabbedPanels.css
    Make sure you upload the SpryAssests folder and see where
    you're at after that.
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • Help with Adobe.premiere.elements12. Please It would appear under the organizer tab that the photos are organised in the lowest folder in the folder structure within Windows Explorer.  How can I use the Windows Explorer structure to organise the photos wi

    Help with Adobe.premiere.elements12. Please
    It would appear under the organizer tab that the photos are organised in the lowest folder in the folder structure within Windows Explorer.  How can I use the Windows Explorer structure to organise the photos within Elements.

    In a situation such as yours, I tend to consolidate items into folders so I have folders of nice workable numbers of images, somewhere between 20 and 200 images. Now, whatever, once you've imported, do your moving within LR, not the OS! I will select all in a folder and drag into a folder a level or two or three above, and then delete the newly empty subfolders. I hope this helps a bit!
    Once you've reached just new Imports of camera output, you'll be flying along.

  • I am using InDesign CS5. I have a body of text which is ranged left with tabbed indents. My client now wants the copy to be justifed, keeping the tabbed indents. Help and advice needed please!

    I am using InDesign CS5. I have a body of text which is ranged left with tabbed indents. My client now wants the copy to be justifed, keeping the tabbed indents. Help and advice needed please!

    Hi
    That screen grab helps a lot. There’s a much easier way of doing what you’re doing.
    Remove all your tabs and set the text in justified paragraphs.
    I’ve typed in dummy text in the example I made below, but after “19.1” put in a space and put your blinking cursor after the space and before the ’N’ of ‘Notices'.
    Then hold down the Command key and hit Backspace (on Mac at least - it’s the key between the Inverted commas/ apostrophe key and the return key).
    The text will jump into place the way you want it to.
    Hope that helps
    Paul
    PS You can set a tab, instead of using a space, in the description I gave above. So, after 19.1 or 19.2 or 19.185 etc etc insert a tab, then hit the Command Backspace after every paragraph number and they'll all line up exactly together. You'll find that editing text within the paragraphs
    after you've set it will be LOADS easier this way.
    You can put the tab anywhere you want it to be using 'Command-ShiftT' and putting a 'left align' tab just after the number. Just type the Command Backspace after the paragraph number and it'll work

  • Need help with adding emoji to my hubby's phone don't see it when I click on the keyboard tab

    I need help with adding emoji to my hubby's iPhone when I go to settings then the keyboard tab it's not there

    I did that bad it's not there and doesn't give me to option to click on it

  • Trying to set up MG5420 for my Samsung galaxy 2 tab 10.1. Help with download? Thanks

    Trying to setup MG5420 for my samsung galaxy 2 tab 10.1  help with download.  thanks 

    Hello bvick.
    Printing can be performed with our Easy PhotoPrint app or by using Google Cloud Print.  The Easy PhotoPrint app is available for free from Google Play.
    For information on using the printer with the Google Cloud Print service, please visit the following link:
    http://www.usa.canon.com/cusa/consumer/products/printers_multifunction/photo_all_in_one_inkjet_print...
    Once there, type in 'Google Cloud' to search for the guide on this service.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Query Help with Item Master & Warehouse Code

    Forum,
    I would like help with a query to identify any items within a database where a particular warehouse code does NOT exist against it. At present I have the following:
    select T0.ItemCode, T1.WhsCode from OITM T0
    INNER JOIN OITW T1 on T0.ItemCode = T1.ItemCode
    where T0.ItemCode NOT IN ('WHS1')
    This is returning all other instance and not just a list of item codes where 'WHS1' is missing from within the 'Stock Data' tab.
    Thanks,
    Sarah

    Hi Sarah...
    Try This
    SELECT T0.ItemCode, T0.ItemName, T1.WhsCode
    FROM OITM T0 INNER JOIN OITW T1 ON T0.ItemCode = T1.ItemCode
    WHERE T1.WhsCode not in ( 'WHS1')
    Regards
    Kennedy

Maybe you are looking for