Level 1 tab displayed just as text

I have a problem with 2 level tabs. I have set it up and the setup seems to logically work as the navigation of clicking on different tabs works.
However, The level one tabs does not show up as template based tabs, but rather just as plain text placed to the far right in the top of the pages. Is this a known problem with a known resolution or have I managed to create a unique problem?
All I need is to get the level 1 tabs to be formatted to look like they are part of the theme. I'm currently using "simple red", but I have tried other ones too with the same result.
Mathias

Mathias,
My first APEX application is running two-level tabs with Lists as the third level of navigation. I only offered the other method since many struggle with two-level tabs and it's quirky behavior at times. I hope using Theme 13 and got you moving forward again.
Jeff

Similar Messages

  • I have downloaded itunes 10.3.1.55, when my device connects and syncs, the Summary, Info and Music tabs display, but no text is shown.

    I have downloaded iTunes 10.3.1.55, but when I attach my device and attempt to sync, the screens appear, but all the text is gone from the Summary, Music and info tabs.   Books, Movies and Apps  are ok.   I can see buttons, but no text is on the box, so I don't remember what it does.  I can see check boxes, but no text.

    Don't reset your phone.  Resetting will return the phone to factory settings and you will loose everything.  Spend some time working toward a fix.
    You might want to try a different USB cable.  It is possible that your cable conincedentally went bad.  I have had this problem before - even cables that will chrage the phone sometimes stop working for data purposes.

  • How to Display  'purchase order text' in MM03 using report program

    Hi Friends,
    Can anybody suggest me how to display 'purchase order text' in MM03 using report program.
    'Purchase order text' tab displays purchase long text of particular material .
    I coded as:
          SET PARAMETER ID 'MXX' FIELD 'E'.
          SET PARAMETER ID 'MAT' FIELD k_final-matnr.
          SET PARAMETER ID 'WRK' FIELD k_final-werks.
          CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN.
    It displays Purchasing tab other than Purchase Order Text tab of MM03.
    Please suggest me how can i solve this.
    Is there any parameter id to set values for Purchase Order text tab

    >
    Madhu Mano Chitra wrote:
    > I want how to navigate to MM03 'Purchase Order text'  tab/ view using ABAP code.
    > could any suggest me
    You can call a transaction and pass it a BDC table that tells it where you want it to go.  You have to work out for yourself what to put into the BDC table.  The code below works for tcode CATSSHOW.
    DATA: bdcdata_wa  TYPE bdcdata,
          bdcdata_tab TYPE TABLE OF bdcdata.
    DATA opt TYPE ctu_params.
       CLEAR bdcdata_wa.
        bdcdata_wa-program  = 'CATSSHOW'.
        bdcdata_wa-dynpro   = '1000'.
        bdcdata_wa-dynbegin = 'X'.
        APPEND bdcdata_wa TO bdcdata_tab.
        CLEAR bdcdata_wa.
        bdcdata_wa-fnam = 'SO_STATU-LOW'.
        bdcdata_wa-fval = '20'.
        APPEND bdcdata_wa TO bdcdata_tab.
        CLEAR bdcdata_wa.
        bdcdata_wa-fnam = 'ANDZEIT'.
        bdcdata_wa-fval = SPACE.
        APPEND bdcdata_wa TO bdcdata_tab.
        CLEAR bdcdata_wa.
        bdcdata_wa-fnam = 'PAST'.
        bdcdata_wa-fval = 'X'.
        APPEND bdcdata_wa TO bdcdata_tab.
        IF p_selscr = SPACE.
           CLEAR bdcdata_wa.
           bdcdata_wa-fnam = 'BDC_OKCODE'.
           bdcdata_wa-fval = '=ONLI'.
           APPEND bdcdata_wa TO bdcdata_tab.
        ENDIF.
        opt-dismode = 'E'.
        opt-defsize = 'X'.
    CALL TRANSACTION 'CAPP' USING bdcdata_tab OPTIONS FROM opt.

  • Display the all text entered for all folder at Item and Header level of PO

    Hi everybody,
    I have the task like the following :
    In a PO there are text folders available at Header and Item level. I want POs with type Purchasing document type u2018ZFu2019 ( First Article PO ) should display all the texts entered into any of these folders either at Header level or Item level during print preview and PO output like Purchasing document type u2018NBu2019 ( Standard PO ).
    u2022 The technical information relating above subject ( SAPScript ):
    o The layout set ( form ): ZPCC_PURCHOR_STD
    o Print program : SAPLMEDRUCK
    u2022 The problems like the following :
    o I found out the differences in debugging of 2 types of Purchasing document type u2018ZFu2019 and u2018NBu2019 .
    o Only Purchasing document type u2018NBu2019 the print program processes Text Elements (HEADER_TEXT, ITEM_TEXT, SUPPL_TEXT) to display all the texts entered into any of these folders either at Header level or Item level.
    o To control the displaying of Text Elements as I know I need a print program, however, our print program is standard print program of SAP system in this case. So I can not make any changes there.
    Do we have the configuration place to this one.
    Please help me to fix the problem. Thank you in advance !

    Hi
    I advise to use the subroutine pool as your sapscript is the bespoke one ( Z one) . So you can make use of the below pseudo code.
    In the sapscript the point where you want to display the text include the following code (
    Assume that your are print header text Then first find out the Co-ordinates for it .Go to me23n->Text tab-> In change mode -> double click on text editor-> which takes you to sapscript layout->Under Go to -> Click on header & get the following details.
    Text name : ekko-ebeln
    Language : ekk-spras
    TEXT ID : F01
    TEXT OBJECT : EKKO.
    /: DEFINE &V_ID& = 'F01'
    /: DEFINE &V_OBJECT& = 'EKKO'.
    /: DEFINE &V_LINE1&
    /: DEFINE &V_LINE2&
    /: DEFINE &V_LINE&
    /: PERFORM GET_HEDER TEXT in program Z_PURCHASE_TEXT
    /: USING &EKKO-EBELN&
    /: USING &EKKP-SPRAS&
    /: USING &V_ID&
    /: USING &V_OBJECT&
    /: CHANGING &V_LINE1&
    /: CHANGING &V_LINE2&
    /: CHANGING &V_LINE3&
    /: ENDPERFORM
    &V_LINE1&
    &V_LINE2&
    &V_LINE3&
    Now in the Subroutine pool Z_PURCHASE_TEXT
    FORM GET_HEADER_TEXT USING IT_INPUT STRUCTURE ITCSY
                                              CHANGING IT_OUTPUT STRUCTURE ITCSY.
    LOOP AT IT_INPUT.
    CASE IT_INPUT-NAME.
    WHEN 'EKKO-EBELN'.
    V_TEXTNM = IT_INPUT-VALUE.
    WHEN 'EKKO-SPRAS'.
    V_LANG = IT_INPUT-VALUE.
    WHEN 'V_ID'
    V_ID = IT_INPUT-VALUE.
    WHEN 'V_OBJECT'.
    V_OBJECT = IT_INPUT-VALUE.
    ENDLOOP.
    USE FUNCTION MODULE READ_TEXT BY USING ABOVE PARAMETERS AND READ THE TEXT AND FILL THE VALUE IN FIELDS IT_OUTPUT.AS BELOW.
    BEFORE THAT FILL V_LINE1,2,3 AFTER GETTING A TEXT FROM READ_TEXT FUNCTION MODULE.
    LOOP AT IT_OUTPUT.
    CASE IT_OUTPUT-NAME.
    WHEN 'V_LINE1'.
    IT_OUTPUT-VALUE  = V_LINE1.
    WHEN 'V_LINE2'.
    IT_OUTPUT-VALUE  = V_LINE2.
    WHEN 'V_LINE3'
    IT_OUTPUT-VALUE  = V_LINE2.
    ENDLOOP.
    ENDFORM.
    Declare the valriable in the routine v_textnm,v_lang,.....
    I hope this hint help you to resolve your issue. Note : the spelling of commands which i have wrote may be incorrect.
    Cheers
    Joginder

  • APEX 2-level tab App. not showing tabs in IE 8

    Hi everybody!
    I've created a 2-level tab application (first it was APEX 3.2 and I upgraded to APEX 4 but it's still happening) and I can only see the parent tabs in Firefox, cause in Internet Explorer 8 they won't show, both over Windows XP or 7.
    The strange thing is that it won't display them in the default page but once I manage to navigate to another page they show as long I'm standing on that other page of the App, so it would seem a tab config. problem, though Firefox shows it right!
    Would this be a compatibility problem or bug, or am I just coming across a developing problem that hopefully Firefox is managing to understand anyway? Following a summary of my App. tab setup in case it was helpful:
    UTILIZATION:_
    Tab Set Page References Tab Name Tab Text Tab Page Parent Tab Set
    TS1 9             T_SERVICES             Services             1              TS1
    T_COUNTRIES          Countries            6              TS1
    T_ENVIRONMENTS    Environments      7              TS1
    T_OWNERS              Owners              8              TS1
    T_SERVERS              Servers               9             TS1
    T_TYPES                 Types                10             TS1
    T_PRODUCTS           Products            11             TS1
    T_REQUIREDSTATUS Required Status  12             TS1
    T_REPORTS 2 T_SUMMARYCHARTS  Summary           16             TS1
    Dependencies           Dependencies    18              TS1
    MANAGE TABS:_
    Tab Set: TS1
    Tab: Services
    Page 1. Service Maintainer - Default Page (2)
    Tab: Countries
    Page 6. Country Maintainer - Default Page (2)
    Tab: Environments
    Page 7. Environment Maintainer - Default Page (2)
    Tab: Owners
    Page 8. Owner maintainer - Default Page (2)
    Tab: Servers
    Page 9. Server Maintainer - Default Page (2)
    Tab: Types
    Page 10. Type Maintainer - Default Page (2)
    Tab: Products
    Page 11. Product Maintainer - Default Page (2)
    Tab: Required Status
    Page 12. Required Status Maintainer - Default Page (2)
    Tab Set: T_REPORTS
    Tab: Summary
    Page 16. Chart - Default Page (2)
    Tab: Dependencies
    Page 18. Dependency Tree - Default Page (2)
    As you can see every tab has a number (2), which means that all pages should display the 2 levels of tabs and there's not conflict, like in a (*) case.
    Thanks.

    Many thanks for answering quickly!, but I created the tabs using blog examples in fact, and as I stated before, under Firefox it's displayed as it should be. My problem is on Internet Explorer, versions 7 and 8 on Win XP or 7.
    Anyone having this same problem with tabs on IE?

  • How Do I Display HTML Formatted Text From A Data Table In Crystal Reports?

    I'm creating reports in Crystal XI.  The information being displayed in the reports comes from data tables where the text is formatted in HTML.
    I've worked with Crystal Reports enough to know that HTML text pulled from a data table doesn't appear in Crystal the same way it does in a web browser.  Crystal Reports ignores all the tags (...unless I'm missing something...) and just displays the text.
    Someone far more Crystal savy than I (...who I don't have access to...) came up with a Formula Field workaround that tricks Crystal Reports into displaying some basic HTML tags.  Here's that workaround:
    <!--
    stringVar TableName := ;
    TableName := Replace (TableName, "<ul>","<br> <br>");
    TableName := Replace (TableName, "<li>", "<br>   &bull; ");
    TableName := Replace (TableName, "</li>", "");
    TableName := Replace (TableName, "</ul>","<br> <br>");
    TableName := Replace (TableName, "<a", "<u><font color='blue'");
    TableName := Replace (TableName, "</a>", "</font></u>");
    TableName
    -->
    QUESTION - Does any similar workaround exist so I can display an HTML Table in Crystal Reports?  If not, is there any way to display HTML formatted text from a data table in Crystal Reports as it would appear in a web browser?

    Hi Steven,
    To display html text in Crystal Reports follows these steps.
    1. Right click on the field and select Paragraph tab.
    2. Under 'Text Interpretation' select 'HTML Text' and click OK.
    I have tried using the way,but it never works.So reply me if there is any way to solve the issue

  • Key being displayed instead of text for an infoobject.

    Hi,
    I have an infoobject DWBSELEMT for which the medium text is loaded in the text table.
    e.g. 1  EN  XYZ
          2  EN  MNP
    This infoobeject is used in a cube and the cube is a part of the multiprovider.
    I have a BEx report on the multiprovider and DWBSELEMT is displayed in rows with option "display key and text"
    However, the o/p of the report shows 1  1      instead of     1 XYZ
                                                          2  2                         2 MNP
    I have changed the BEx options in the infoobject, display properties in query and also in the multiprovider level, but still there has been no change.
    What could be the reason?
    Please help.

    Hi Simon,
    The infoobject does have actual texts loaded into the T table.
    The text type and BEx descp. options in the BEx tab of the infoobject are set to medium and long text.
    I have ran the query in other desktops as well, but no change..
    Kindly let me know if you have any inputs.
    Regards,
    Vinod.

  • Is there any option to display selection screen text in bold or big font?

    Hi all,
    Is there any option to display selection screen text in bold letters or with increase font size?
    Thanks n Regards

    Hi,
    Just give atry in this way..
    open the same program ans selection-screen screen no will be 1000 in se51 screen painter,
    go to properties of the texts u want to change then go to display tab and check the checkbox bright.
    it may or may not work but this will work in module pool .
    just give a try...
    Regards,
    Suresh.

  • Spry Tabs displaying all content in IE8

    Hi,
    I have been looking at using the spry tabs panel to display content, it works perfectly fine in Safari and Firefox, but in explorer 8 all the panels display one underneath the other?
    I have played around with the layout and am probably out of my depth...
    If anyone knows a way I can fix this, otherwise I will use a simpler display.
    Thanks
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <link href="CSS/css.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    //-->
    </script>
    <link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="container">
    <div id="TabbedPanels1" class="TabbedPanels">
        <ul class="TabbedPanelsTabGroup">
          <li class="TabbedPanelsTab1">
          <h1>$500 </h1>
         <p> Starter pack.</p>
          </li>
          <li class="TabbedPanelsTab" >
    <h1>$900 </h1>
            <p>A bit more special.</p>
          </li>
          <li class="TabbedPanelsTab">
    <h1>Custom </h1>
            <p>For something extra.</p>
          </li>
          <li class="TabbedPanelsTab">
            <h1>Design Services</h1>
            <p>content.</p>
          </li>
          </li>
        </ul>
        <div class="TabbedPanelsContentGroup">
    <div class="TabbedPanelsContent1">
          <div class="contentimage"><img src="images/page-design.gif" width="400" height="312" alt="example of designs" longdesc="images/page-design.gif" /></div>
          <div id="content">
    <ol>
    <li>option 1.</li>
                        <li>option 2.</li>
                  <li>option 3.</li>
                  <li>option 4.</li>
                  <li>option 5.</li>
                    </ol>
    <p>Create an interesting space.</p>
        <div align="center"><a href="web me.html#pageinfo"><img src="images/auckland-design.gif" width="314" height="62" alt="link to design packages" longdesc="images/auckland-design.gif" /></a></div>
          </div>
    </div><!--TabbedPanelsContent1 ends here-->
    <div class="TabbedPanelsContent2">
          <div class="contentimage"><img src="images/site-design.gif" width="400" height="310" alt="example of design" longdesc="images/site-design.gif" /></div>
          <div id="content">
    <ol>
    <li>option 1.</li>
                        <li>option 2.</li>
                  <li>option 3.</li>
                  <li>option 4.</li>
                  <li>option 5.</li>
                    </ol>
    <p>Create an interesting space.</p>
          <div align="center"><a href="web me.html#info"><img src="images/auckland-design.gif" width="314" height="62" alt="link to design packages" longdesc="images/auckland-design.gif" /></a></div>
          </div>
    </div><!--TabbedPanelsContent2 ends here-->
    <div class="TabbedPanelsContent3">
         <div class="contentimage"><img src="images/site-design.gif" width="400" height="310" alt="example of design" longdesc="images/site-design.gif" /></div>
          <div id="content">
    <ol>
    <li>option 1.</li>
                        <li>option 2.</li>
                  <li>option 3.</li>
                  <li>option 4.</li>
                  <li>option 5.</li>
                    </ol>
    <p>Create an interesting space.</p>
          <div align="center"><a href="web me.html#info"><img src="images/auckland-design.gif" width="314" height="62" alt="link to design packages" longdesc="images/auckland-design.gif" /></a></div>
          </div>
    </div><!--TabbedPanelsContent3 ends here-->
    <div class="TabbedPanelsContent4">
          <div class="contentimage"><img src="images/site-design.gif" width="400" height="310" alt="example of design" longdesc="images/site-design.gif" /></div>
          <div id="content">
    <ol>
    <li>option 1.</li>
                        <li>option 2.</li>
                  <li>option 3.</li>
                  <li>option 4.</li>
                  <li>option 5.</li>
                    </ol>
    <p>Create an interesting space.</p>
          <div align="center"><a href="web me.html#info"><img src="images/auckland-design.gif" width="314" height="62" alt="link to design packages" longdesc="images/auckland-design.gif" /></a></div>
          </div>
    </div><!--TabbedPanelsContent4 ends here-->
        </div>
      </div>
    <div id="design">
      <div class="topline"></div>
      <div id="leftcoloumn">
      <h1> Simple affordable website design in Auckland</h1>
         <p>As designers on Auckland's North Shore we set out to offer an affordable easy way to create special spaces etc..</p>
        </div><!--left coloumn ends here-->
    <div class="centerline"></div><div id="rightcoloumn">
        <h1>Specialising in creating special spaces. </h1>
       <ol>
          <li>Create a space you'll love.</li>
          <li>Fit your budget.</li>
                             </ol>
        </div><!--right coloumn ends here-->
      </div><!--design column ends here-->
    <div id="footer"> 
    </div><!--footer ends here-->
    </div><!--container ends here-->
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    //-->
    </script>
    </body>
    </html>
    @charset "UTF-8";
    .TabbedPanels {
    margin: 0px;
    padding: 0px;
    float: left;
    clear: none;
    width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
    #container #TabbedPanels1 .TabbedPanelsTabGroup .TabbedPanelsTab1 h1 {
    font-size: 18px;
    color: #52542D;
    #container #TabbedPanels1 .TabbedPanelsTabGroup .TabbedPanelsTab h1 {
    font-size: 18px;
    color: #52542D;
    .TabbedPanelsTabGroup {
    margin: 0px;
    padding: 0px;
    margin-left: 30px;
    .TabbedPanelsTab {
    position: relative;
    top: 435px;
    float: left;
    width: 203px;
    padding: 12px 10px;
    margin: 0px 1px 0px 0px;
    background-color: #CCC;
    list-style: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    cursor: pointer;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-color: #666633;
    border-bottom-color: #666633;
    border-left-color: #CCC;
    overflow: visible;
    .TabbedPanelsTab1 {
    position: relative;
    top: 435px;
    float: left;
    width: 203px;
    padding: 12px 10px;
    margin: 0px 1px 0px 0px;
    background-color: #CCC;
    list-style: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    cursor: pointer;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-color: #666633;
    border-bottom-color: #666633;
    border-left-color: #666633;
    overflow: visible;
    .TabbedPanelsTabHover {
    background-color: #FFF;
    .TabbedPanelsTabSelected {
    background-color: #FFF;
    border-bottom: 1px solid #666633;
    .TabbedPanelsTab a {
    color: black;
    text-decoration: none;
    .TabbedPanelsContentGroup {
    position: relative;
    bottom: 90px;
    clear: both;
    min-height: 430px;
    height: auto;
    margin-right:27px;
    margin-left: 30px;
    background-image: url(../images/content-box.gif);
    background-repeat:no-repeat;
    .TabbedPanelsContent {
    padding: 4px;
    .TabbedPanelsContentVisible {
    .VTabbedPanels .TabbedPanelsTabGroup {
    float: left;
    width: 10em;
    height: 20em;
    background-color: #EEE;
    position: relative;
    border-top: solid 1px #999;
    border-right: solid 1px #999;
    border-left: solid 1px #CCC;
    border-bottom: solid 1px #CCC;
    .VTabbedPanels .TabbedPanelsTab {
    float: none;
    margin: 0px;
    border-top: none;
    border-left: none;
    border-right: none;
    .VTabbedPanels .TabbedPanelsTabSelected {
    background-color: #EEE;
    border-bottom: solid 1px #999;
    .VTabbedPanels .TabbedPanelsContentGroup {
    clear: none;
    float: left;
    padding: 0px;
    width: 30em;
    height: 20em;
    #container #content {
    width: 395px;
    float: right;
    margin-top: 35px;
    padding-right: 20px;
    #container #TabbedPanels1 .TabbedPanelsContentGroup .TabbedPanelsContent1.TabbedPanelsContentVisible #content .image {
    margin-top: 27px;
    #container .contentheaders {
    margin-right: 8px;
    #container .contentimage {
    float: left;
    margin-top: 35px;
    padding-left: 40px;

    You are probably getting a javascript error in IE8 preventing the tabs displaying properly. Use the developer tools unde F12 to find the problem line in your code. Sometimes it is just a cariable name you have used that IE does not like....

  • 2 level tabs with Breadcrum

    Hello,
    I want 2 level tabs but I confused following thing.
    2 tab set in Parent Tabs, parent tab set, Parent Tab Text, Tab Current for page, Breadcrum,
    I need someone lead to end this.
    Thanks in advance,
    EB NY

    Hi,
    OK - I think I'd better try to explain tabs another way!
    Simply put, tabs don't take you from a page, they take to to a page. When you have a page open on your screen, you see the tabs for all pages along the top of the screen. You can be on any page and click the tab for any other page.
    So, if your example page had the tabs along the top, you would have tabs for Page 2, Page 3 and Page 4. You can be on Page 2 and click the tab for either page 3 or page 4. But, you could be on page 3 and click the tab for Page 4 as well. Of course, there could be other tabs, so you could go from Page 2 to Page 12 if there was a tab for that. So, if you want to pass a value from page 2 to page 4, you would have to ensure that the tab for Page 4 is only available to Page 2 and then you would still have to devise a means of passing the value anyway and, if pages 3 and 4 are the only pages the user should go to from Page 2, then you would have to hide the other tabs as well to leave them no choice but to go to 2 or 3. Tabs are not designed for this purpose - they are there to get you to another page.
    Now, as I said before, when you click on a tab, the page is submitted and everything on the page is saved. Not only that, but any value saved is then available for use on any other page until such time as you clear out the cache for the saved page.
    To give you an example of what I mean: [http://apex.oracle.com/pls/otn/f?p=46426:1] You will notice that I have no buttons on any of the pages 1, 2 or 3. Enter anything into the P1 Text item and click any other tab and repeat for pages 2 and 3. You will see, if at any time you go to Page 4, that all your values are displayed. Page 4 is referencing the page items on the other pages from their saved values in the session. Keep using the tabs to move between the pages and change any/all values and see that these are immediately available on Page 4. When done, click on the button on page 4 and then click the tabs between pages again - the data is now gone as the button clears the cache for pages 1, 2 and 3
    So, I'm suggesting here that you don't need to "pass" any values as they are already available to the other pages because they have been saved into the session as soon as any tab is clicked.
    Andy

  • It is possible to Display HTML Formatted Text?

    Hi
    This is what I want to accomplish:
    I created a system and now I want to add a help button on each page. This button will open a popup window which will display the help of the current page. (This is done)
    But now I want to display a formated text (plain or html) just like this example:
    h2. Help
    Page 20:
    Description:
    This page displays a list of users.
    And don't like this other:
    Help Page 20: Description: This page displays a list of users.
    Thanks a lot!

    This is still a problem...I'd like to add a bit to it.
    The HTML Editor correctly places formatting tags around the text and the item is saved to the db (or whatever)...however, when displaying the formatted text on an apex generated page, and it doesn't matter what type of DISPLAY (saved, non-saved, escape, etc..) is being used, Apex places <SPAN class="display_only"> around the text in question which is apparently overriding the html tags, so the text displays in the CSS defaults regardless of the formatting used by the HTML Editor. The reason the formatted text displays correctly in a "report" is because this span doesn't exist.
    I'd like to take the time to add a change request and request that item level classes are not buried within apex and the theme. It would be nice if they were displayed on the item, for example, so they could be easily removed or overrided...this span for example overrides even a TD level custom class because of it's placement, so there seems to be little or no way to override it.

  • How easy is it to create a new add on? I would like to see tabbed display within the browser on FF24 on Android 4.2 – as per desktop FF

    Please excuse this if it's a noob Q – I am, indeed, completely new to Android. Tabbed display appears to have been possible on previous versions of FF for Android via several add ons but unfortunately no more. Display of each open tab within the browser – rather than the current arrangement with just the number in the corner – is still possible with FF desktop and also features in Chrome, Opera and Dolphin for Android. I would prefer not to use these other mobile browsers as FF outperforms them but I do need tabbed display to allow for PDF docs to open – using the PDF viewer add on – alongside their initiating webpage. Any ideas? Is it difficult to create an add on? What is the process? Is one in the pipeline? Many thanks in advance for any help or guidance you can offer...

    Many thanks for your reply, Waka – guess you're right that it's a new add on or bust... I still find it odd that such a common UI feature across mobile browsers is unavailable in FF24 either as an option under settings or as an add-on. Surely, I'm not the only person who finds this puzzling?

  • Smartforms,How to display different standard Text in a Text element.

    In smartform,if I want to according to the different conditions,display one of the serveral different standard Text objects which all  maintained in SO10 in a same text element,how to do it?
    if i put them in serval text elements, each condition only display the corresponding text element,but the text content can not display in the same position.
    Is there anyone can tell me?
    thanks.

    use Alternative to control it no problem
    for example you want to display the different SO10 to same position TEMPLATE's row 1 col2
    TEMPLATE1
    Alternative case1
    YES
    INCLUDE TEXT1(display SO10) [set output option line1 column2]
    NO
    Alternative case2
    YES
    INCLUDE TEXT2(display SO10) [set output option line1 column2]
    NO
    Alternative case3
    every case your SO10's text is always display at line2 column2
    just try to test it ,you can know

  • Display key and text by WAD command in custom structure hierarchy

    Hi everybody,
    I have a query using a custom structure with hierarchy layout. As usual the structure does only display its text as descriptions but I can enable the display the key in BEx Web by right-click on the analysis item --> Properties --> Characteristic --> Display. Unfortunately these setting can not be defined directly in the structure within the Query Designer.
    For a workaround I put the query into a web template, in which I used the Set Presentation (SET_PRESENTATION) command to enable key and text display from the start. Hence I put that command in the wem template parameters Action Before First Rendering (ACTION_BEFORE_FIRST_RENDERING). Everything is working properly and makes me very happy.
    But... there is one thing missing, I would like to implement... I want a toggle button, which allows the user to switch between key and text display and text display. Unfortunately setting the same command from Action Before First Rendering (ACTION_BEFORE_FIRST_RENDERING on a various button does not working. The button command only affects data rows of the leaves of the structure hierarchy. All parent nodes do not change their appearance.
    Any ideas how to solve this?
    Thank you for any helps and comments!
    Sebastian

    Hi Sebastian,
    I have a similar problem. Can you help me? How did you set the entry in Member Presentation of Command SET_PRESENTATION to display key and text? I just found the values to set the only text or only key.
    best regards,
    Barbara

  • How can I make the tab image instead of text.

    Hi guys,
    How can I make a tab displayed as image instead of text?
    Best Wishes,
    Fateh

    Thanks Jari,
    I use Apex 4.0.2 and the theme is Builder Blue 2. When I click edit tab, I get "Tab Label" that is required field and a region called "images". As I got from you, I cannot utilize images in my case.
    Regards,
    Fateh

Maybe you are looking for

  • IMessage on Macbook Pro not working

    All of a sudden my macbook pro's iMessage stopped working! Every time I'd send a message, a red circle with an exclamation point pops up on the side of the message. Somedays it'll be on and off where i could send iMessages but only receive one on my

  • Changes made to cell reference and cell formula in designer are not reflected in analyser?

    Dear Experts, I have made few changes to Bex Report in Query designer by creating cell reference for a cell and the same cell reference used by the formula created on the adjacent cell. I changes are working for 1 Report where as , the exact chanegs

  • TS3274 iPad 2 cannot be synced. There is not enough memory available....but 40Gb available!!

    iPad 2 cannot be synced. There is not enough memory available....but 40Gb available!!. I just finished copying my CD collection across to iTunes, sunced and all was fine.  I then changed some of the track names and it came up with this message. Help?

  • IPad videos transfer to iTunes

    Please someone help!! When I connect my iPad to iTunes and click on transfer purchases, half of the videos I purchased simply disappear...it really ****** me off because I paid for those videos and now they're simply vanishing. Someone please, help.

  • Exchanging my iPad- what to include on packaging?

    My iPad is being exchanged for another one and I need to know what to include on the packaging, e.g. Name, Address, web order I.D. or something? And will they bring my New iPad at the same time or will it be delivered afterwards?? Thanks.