Where is rowspan to a region using universal theme

I use APEX 5.0 and universal theme.

I have the following configurations of the regions

A AND B

A C

for example, I need area A span 2 rows while regions B and C sit next to them. Note This is a very simplified version of what I want to achieve.

However I can't region C to sit "side" of the region, a background in half. I looked and you can't see anything referring to rowspan. This is no more than 5 APEX?

Any help gratefully received.

Thank you

Jeremy

Jezzer says:

I use APEX 5.0 and universal theme.

I have the following configurations of the regions

A AND B

A C

for example, I need area A span 2 rows while regions B and C sit next to them. Note This is a very simplified version of what I want to achieve.

However I can't region C to sit "side" of the region, a background in half. I looked and you can't see anything referring to rowspan. This is no more than 5 APEX?

Set presentation grid regions as follows:

Region Start the new row Column Scope of column
A Yes Automatic Automatic
B NO. 7

Automatic

C NO. 7 Automatic

Adjust the Start column for areas B and C & to give regions the required width.

Tags: Database

Similar Questions

  • Lists/Navigation Menu using universal theme APEX5

    I'm migrating my APEX to APEX5 application. I would like to use the new features of menu list/Navigation in the universal theme (so my menu items is displayed in the left navigation panel). I have a combination of static and dynamic options, and I don't know how to do this. My parent menu ('Reports' and 'Forms') options are static, but my choice of menu SUP for each will be the dynamic page navigation elements that will come from a SQL stmt. It would be a type of tree structure as below. Can you get it someone please let me know how to do this? Thank you!

    'Reports' (level 1 - static)

    "Report1" (level 2 option menu sub - dynamic)

    "I2" (level 2 option menu sub - dynamic)

    "Occurs3" (level 2 option menu sub - dynamic)

    .....

    'Forms' (level 1 - static)

    "Form1" (level 2 option menu sub - dynamic)

    'Form2' (level 2 option menu sub - dynamic)

    "Form3" (level 2 option menu sub - dynamic)


    bobmagan wrote:

    Thank you. My application was built on the sensitive to the APEX 4 theme. I wanted to use the new universal theme to take advantage of the update options. Previously, I had 2 parts of PL/SQL ('Forms' and 'Reports') who seized the dynamic pages of my custom table 'page' (see below). This would create a type menu tree they could click on launch my new pages for each. I hope to do the same sort of thing in the navigation/universal list menus.

    ----------------------------

    DECLARE

    Get_pages CURSOR IS

    Select page_alias, page_description

    page

    where page_type = 'REPORT '.

    and display_on_menu = 'Y '.

    order of page_order, page_description;

    BEGIN

    htp.tableOpen;

    Get_pages LOOP PAGE

    htp.tableRowOpen;

    HTP.p (')');

    If: APP_PAGE_ALIAS = page.page_alias then null;

    HTP.p ('': page.page_description: '');

    on the other

    HTP.p ('': page.page_description: '');

    end if;

    HTP.p (')');

    htp.tableRowClose;

    END LOOP;

    htp.tableClose;

    END;

    The application to the universal theme of the switch.

    Create a dynamic list query-based in the sense of:

    /* Static parent entries */
    select
        1                      lvl
      , 'Reports'              label
      , null                   target
      , null                   is_current_list_entry
      , 'fa-table'             image
      , null                   image_attribute
      , null                   image_alt_attribute
      , null                   attribute1
      , null                   attribute2
      , null                   attribute3
      , null                   attribute4
      , 'REPORTS'              attribute5
      , null                   attribute6
    from
        dual
    union all
    select
        1
      , 'Forms'
      , null
      , null
      , 'fa-edit'
      , null
      , null
      , null
      , null
      , null
      , null
      , 'FORMS'
      , null
    from
      dual
    union all
    /* Dynamic reports entries */
    select
        2
      , page_description
      , 'f?p=' || :app_alias || ':' || page_alias || ':' || :app_session || '::' || :debug
      , null
      , null
      , null
      , null
      , null
      , null
      , null
      , null
      , 'REPORTS'
      , page_order
    from
        page
    where
        page_type = 'REPORT'
    and display_on_menu = 'Y'
    union all
    /* Dynamic forms entries */
    select
        2
      , page_description
      , 'f?p=' || :app_alias || ':' || page_alias || ':' || :app_session || '::' || :debug
      , null
      , null
      , null
      , null
      , null
      , null
      , null
      , null
      , 'FORMS'
      , page_order
    from
        page
    where
        page_type = 'FORM'
    and display_on_menu = 'Y'
    order by
        12 desc /* attribute5 */
      , 1       /* level */
      , 13
      , 2
    

    Note that the attribute columns 1, 2 and 4 are taken into account by the model Menu lateral Navigation, then jump on them and use the attribute column 5 and for all required custom data in your query.

    Then go to the desktop user interface detail pageand set attributes for the Navigation Menu:

    List of the navigation menus:

    Position: Side

    Model from the list: Side Navigation menu

  • Need help using the tabs of the apex to the universal theme.

    I tried using the enkitec boards to create tabs in page apex.

    But I'm unsucessfull and I used the apex as the version 5.

    The theme that I use is universal theme.

    https://www.enkitec.com/Apex/f?p=15300:30310:0:

    Also I'm tired the method too to create tabs below

    Creation of a region of the tab within a page in the APEX

    It's like

    In the HTML header, I'll add the code below

    <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/redmond/jquery-ui.css" type="text/css" /> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"> </script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"> </script> <script type="text/javascript"> $(function() {    $("#tabs").tabs();    $x("tabs").appendChild( $x("tabs-1"));    $x("tabs").appendChild( $x("tabs-2")); }); </script>

    Then I'll create 3 region.

    Region 1 > > > create a HTML region (REGION MODEL = MODEL number) and add the code below in the SOURCE of the REGION

    <div id="tabs"> <ul>    <li><a href="#tabs-1">Employee</a></li>    <li><a href="#tabs-2">Chart</a></li> </ul> </div>

    Region 2 > > > create HTML region... Add two fields to the region now, edit the region

    Add the code below in the header of the region to REGION 2

    <div id="tabs-1">

    Add the code below in the bottom of the region to REGION 2

    </div>

    Region 3 > > > create HTML region... Add two fields to the region now, edit the region

    Add the code below in the header of the REGION 3 region

    <div id="tabs-2">

    Add the code below in the bottom of the REGION 3 region

    </div>

    Example: http://Apex.Oracle.com/pls/Apex/f?p=12060:7

    I used exactly the same code... except that my region 2 contains a REPORT instead of two text field and region 3 GRAPHICS instead of text field.

    Kind regards

    Shijesh

    -------

    Please reward the answer if it was useful / correct


    I used the enkitecs method to create tabs.

    Tabs have been created, but the fields were visible inside.

    Will soon be replicating the scenario of apex.oracle.com

    Maybe someone can help.

    At the same time if there is no easy way to create tabs in apex page please let me know.

    Thank you

    Paul

    Hi pauljohny100,

    pauljohny100 wrote:

    I'd like to learn more about the region view selector

    You have a good resource on it.

    Selector display region is type of region, which shows the navigation links in the form of hyperlinks button for regions where the attributes of the region-> region selector display are set to Yes. Œuvres similar to jQuery tabs.

    Reference: ApEx 4.0 region selector | iAdvise blog (it's blog when it was introduced first in APEX 4.0)

    I have not found any Oracle Documentation on this, but it's taken APEX oracle supported the region type.

    You will find that this implemented in various packaged for example P-Track applications.

    Kind regards

    Kiran

  • Create the tab navigation links as in Apex5 using the universal theme

    Hello everyone.

    I use Apex 5.0.3 against Oracle 12 c on my laptop Windows7.  I want to create an application that uses the universal theme that also includes the type navigation tab.  I read that the tabs used in pre-Apex5 applications have been written off in favor using the navigation links.  But I see no intuitive method to create these links of the type tab.

    Could someone tell me please a guide or packed app that gives a tutorial step by step on how to proceed.

    Thank you.

    Elijah

    Maybe this helps:

    ORA-00001: Unique constraint violated: easy tab to Apex 5 regions

    Also that:

    Martin Giffy Souza on Oracle APEX: APEX 5: create submenus

    Dimitri Gielis Blog (Oracle Application Express - APEX): APEX 5.0: Bye bye tabs, welcome to the Navigation lists

    -Morten

  • How to implement reports region 100% to the universal theme?

    Theme 26 a model "reports 100% region. We use this model to the traditional reports. During the passage of our application to universal theme, we lose the horizontal (width 100%) portion of the classic reporting regions. How can we restore the classic reports area to the full stretch at the universal theme?

    user12045295 wrote:

    Please update your forum profile with a recognizable username instead of "user12045295": Video tutorial how to change username available

    Theme 26 a model "reports 100% region. We use this model to the traditional reports. During the passage of our application to universal theme, we lose the horizontal (width 100%) portion of the classic reporting regions. How can we restore the classic reports area to the full stretch at the universal theme?

    Select the report of stretching in the model of Report Options.

  • Horizontal scroll bar in the model of interactive report region 5 Apex (universal theme)

    Hello

    We have migrated our application from 4.2 (theme: 21 scarlet) to 5.0 (changed to universal theme). Most of our reports are interactive reports and have more than 20 columns to display in the reports. 4.2 in the 'Region of report"model horizontal scroll bar came from bottom of page like below and has been easy for the user to scroll through the options to the right and see all the columns.

    Apex4.2.PNG

    In the universal theme apex 5 with 'interactive report' model in order to see the columns on the far right in the first lines user must scroll the vertical bar first, then scroll horizontal straight bar and vertical bar to go to the top


    Apex5.PNG


    How can you have the scroll as in 4.2 bar region of report model. I think that we need to make some changes in CSS and also need to copy the existing model and make changes and use this model in all reports.


    Thank you.

    RAM


    Hi Tim,.

    Thanks for the reply. I tried this option before posting forum. It did not work. Now, after changing position attribute fixed to the ' Page "(or region) in the report attributes section it works." " When we migrated the app at UT, he has been on 'None '. Problem solved now. Thank you.

  • I lost my cd seria number for my quake 4 pc game, where can I get one to ultimativa lose my number of seria of my quake 4 pc game cd, where can I get one to use

    I lose my number of seria of my Quake 4 pc game cd, where can I get one to use

    Hello

    Since the Raven is the developer of the software quake 4, you should contact the manufacturer.

    http://raventools.com/support/

  • Where did the text "Home" hidden Page 1 universal theme?

    I created an Apex 5 application using the universal theme, and it gives me a default 1 Page with the word "Welcome" in a 30-point font in the breadcrumb area. I would like to change 'Home' to a welcome message, but I can't find not this text.

    You should look under the components shared, breadcrumbs > Breadcrumb > entries >... You will find welcome and you can change it to something different...

    Thank you

    Tony Miller
    Los Alamos, NM

  • Where can I learn how to use creative cloud program from A to Z?

    Where can I learn how to use creative cloud program from A to Z?

    Creating cloud FAQ

  • Apex 5 universal theme: too much space between the bar and of the body of content

    Hello

    I work with the universal theme and my client is also enthusiastic about is that I am.

    I observed, this universal theme calculated the margin of the happy body at the end of the rendering and adds something like 100 px space between the menu bar and the content body.

    Many layouts which seems well - for some, it's a little strange.

    Is there a mechanism to place content in the title of body (which would allow almost exactly fill my requirement) or to stop this behavior?

    Or is this just a RTFM issue and I did not foud the manual jet?

    Concerning

    Sebastian

    Thx for your return. I tried to get a workspace APEX on the fly; but he has failed.

    So I had time to check.

    I used to write Javascript Code on Page 0 in the header after regions before putting them in files from APEX 4.0.

    As a result, Universale APEX 5 theme to a misinterpretation of the provision. "Container" (of the region

    ) was placed directly after the header section before the menu bar.

    Then the calculation of the provision made the rest...

    So I moved the "Javascript" - regions in the page footer Section.

    Now, the layout is fine.

    Cordially Sébastien

  • breadcrumb universal theme in a line

    Hello

    is it possible to have, in the universal theme, a breadcrumb on a line

    in other words, do not make a current page at the second line of the navigation bar

    and also is there a way you have the area of thin (thinner) bread crumbs?

    Concerning

    Hi user,

    I would still say that you get something from scratch. But just to use a hack, you can open your Page template and write the following code in the "Inline" region, and this will customize your breadcrumb:

    .t-BreadcrumbRegion - useBreadcrumbTitle .t - wire of Ariane-point: last-child

    {

    display: inline-block! important;

    font size: 1.8 rem! important;

    line-height: 2.2 rem! important;

    text-overflow: ellipsis;

    -webkit - font smoothing: crenellated.

    overflow: hidden;

    position: relative;

    }

    Thank you

    Sunil Bhatia

  • Universal theme 42 - too long text in the Navigation bar

    Hello

    I use APEX 5.0 (1000 likes ;-) with Oracle 11.2.

    I created an application with theme universal theme 42.

    Navigation should look like this (for example, without sense):

    1. presentation of the members

    1.1 first presentation of car deveopment

    1.1.1another point to navigate

    2. the means of production

    3. last menu point

    3.1. .....

    3.1.1...

    3.1.2...

    ...

    The text is truncated or not completely display. For example only "1.1. "first conception of ' appears in the navigation menu. The rest is not visible.

    Is it possible to stop the wrapping text in the navigation menu. Looking for the corresponding model, I need to change, I found the 'Link List' model with the CSS classes "t-LinkList - nowrap ' to 'Disable the text wrapping' but I don't no weather is the right way to solve the problem or where I have to activate the Option nowrap.

    Another, perhaps better elsewhere would attend the larger navigation bar. But I can't find the right place in the style sheet to change this.

    Any suggestions?

    Ben

    Oh, I found the solution. I created a custom in the theme roller css, save under and so on.

  • Conversion to universal theme... Apex 5.0

    I copied 5 Apex on one of my test servers and updated my main application to Apex 5.0.   I used the type of modal region in many places in the Apex 4.2.6 but I do not see how to declare it in Apex 5.0 with the universal theme?

    Which is obsolete?  Used the theme 25 front

    Hi Scott,.

    It's the same as in 4.2 APEX, but the model of the region for dialogue online is now called "Inline Dialog. This should bring out the difference to the new modal/Non-modal dialog box feature in APEX 5.0. These dialogs online can always be called with api JS openModal (which is declared in the specific JS file of the theme). Take a look at the packed app "Survey Builder", page 77 (you must first unlock the application).

    You can also take a look at the new modal page feature "dialog box. Who are the real APEX with validations, processes... It really depends on the use cases if you use 'Inline Dialogs' or 'real' APEX pages displayed as a modal dialog box.

    Concerning

    Patrick

    Member of the APEX development team

  • Shuttle to the universal theme issue

    Hello

    I am trying to create 3 elements of shuttle in my page. When I on 'Start the new line' Yes to all 3 items,it appears as follows.

    Shuttle1.png

    But I want to display them on a single line. When I try to view them on a single line, it's getting collapsed and is displayed as.

    Shuttle2.png

    It worked fine in version 4 Apex. I'm level to Universal theme. This is where I encounter this problem. Is it possible to fix this?

    Hi Joe Mencis

    I think that this print screens help you solution to your problem

  • "Topaz" conversion - 4 at the universal theme - 42 on AEX 5.0 theme

    Hello

    I use APEX 5.0 and the "Topaz" theme.

    As an experiment, I'm trying to convert the Topaz - 4 them to the universal theme - 42.

    Then I get the following error message:

    This application can be converted to a theme by using a list-based navigation, because it uses two levels of tabs.

    Please update the application and set the parameters of current tabs to use only one level of tabs before changing the theme. (Go to the error)

    Indeed, my application uses a two-level tabs.

    Updatng demand would mean I want to transform all tabs "two levels" to a 'single-tab' level, manually...

    What are the benefits of using the universal theme - 42?

    Thanks and greetings

    Laury wrote:

    I use APEX 5.0 and the "Topaz" theme.

    As an experiment, I'm trying to convert the Topaz - 4 them to the universal theme - 42.

    Then I get the following error message:

    This application can be converted to a theme by using a list-based navigation, because it uses two levels of tabs.

    Please update the application and set the parameters of current tabs to use only one level of tabs before changing the theme. (Go to the error)

    Indeed, my application uses a two-level tabs.

    Updatng demand would mean I want to transform all tabs "two levels" to a 'single-tab' level, manually...

    What are the benefits of using the universal theme - 42?

    See the guide to universal theme. This explains the benefits of its use; How to convert applications other themes; and illustrates the various components and options included.

    It is available as a sample application in your workspace, you can install and check to see how the models and options are used in the development.

Maybe you are looking for

  • How can I change the number on imessage and facetime, that is no longer an active number

    IMessage and facetime has a number that is not active more need ti change so that I can ativate softs

  • light the fire

    How to connect with my kindle to my wireless printer in a single 5312?

  • flashplayer.dmg

    Yesterday, I was search the web and suddenly an upgrade Flash Player flashed on the screen and I clicked.  Now, I get all sorts of strange pop ups (zip free accounts, MACkeeper, Safari pop-up warnings).  I don't know what happened or what I need to d

  • Windows 7 on HP TouchSmart M6-n012dx Sleekbook ENVY

    Hello I need to know, is it possible to install windows 7 on the ENVY of HP TouchSmart M6-n012dx Sleekbook machine. While the machine is pre-installed with windows 8.

  • Connected wireless but no internet access

    I recently bought a used laptop and cannot get wirelless internet access. Its a HP Pavilion and I am able to access the internet if I use the LAN, but not via the wireless connection. He says that I'm connected to my wireless network, but when I try