Apex 4.2.1: Region table layout and pagination

See https://apex.oracle.com/pls/apex/f?p=57688:2
Theme 24, table-based layout. Page template = One Level Tabs, Left Sidebar.
All 4 regions are report regions using the report region and 2-column portlet as the region and report templates respectively.
Regions 1.1 and 1.2 are supposed to be in the same row in different columns so 1.1 has New Grid=Yes and 1.2 has New Column=Yes. Ditto for 2.1 and 2.2
1. Trial and error shows that simply changing the Pagination of report region 1.1 from None to Bottom-Right causes the layout to shift such that 1.2 moves to a grid row by itself! What is going on here? Surely a "trivial" change like whether pagination is displayed or not shouldn't cause such a major layout change. Am I missing something?
2. Regions 2.1 and 2.2 stick together. How can we add some breathing room between them?
3. If the page template is changed to One Level Tabs, No Sidebar, the behaviour changes. All the regions are rendered in 1 column, ignoring the New Column grid layout setting. Why is this?
4. In general, with all the layout changes in 4.x, I was under the impression that, when using a HTML Table based page template, simply using the New Grid/New Row/New Column, etc attributes on the Region attributes would be sufficient to build pages with intuitive, declarative layouts with arbitrary "boxes" laid out on the page, regardless of the content/region type. But that doesn't appear to be the case.
Can some CSS expert (here's looking at you, Paul) please share some insights on how all this works?
Thanks

VANJ wrote:
Can some CSS expert (here's looking at you, Paul) please share some insights on how all this works?Hi Vikas
Regions 1.1 and 1.2 are supposed to be in the same row in different columns so 1.1 has New Grid=Yes and 1.2 has New Column=Yes. Ditto for 2.1 and 2.2With table-based region layout I'm getting a Column number selector rather than a New Column switch.
1. Trial and error shows that simply changing the Pagination of report region 1.1 from None to Bottom-Right causes the layout to shift such that 1.2 moves to a grid row by itself! What is going on here? Surely a "trivial" change like whether pagination is displayed or not shouldn't cause such a major layout change. Am I missing something? No abstruse CSS here, just Pagination Sub-template and table-less layouts coming home to roost.
Unlike the majority of report templates, the 2-column portlet report template doesn't have an outer HTML <tt>table</tt> to act as a container for the engine-generated pagination <tt>tr</tt>. The pagination row is thus treated by the browser as starting a new row in the current open table&mdash;the region layout. Having the pagination <tt>tr</tt> injected into the 2-column portlet source turns it into tag soup. The whole thing spectacularly fails HTML validation.
I expect the official Oracle line is that 2-column portlet reports are not supposed to use pagination.
2. Regions 2.1 and 2.2 stick together. How can we add some breathing room between them?Add this rule to the page Inline CSS. This will add some space on the left of all region cells except the first in the row.
.regionlayout td+td {
  padding-left: 10px;
3. If the page template is changed to One Level Tabs, No Sidebar, the behaviour changes. All the regions are rendered in 1 column, ignoring the New Column grid layout setting. Why is this?If this is the layout shown in your link above then I'm not reproducing it. Can you upload an export of your app and provide a link to it?

Similar Messages

  • Report attributes - layout and pagination

    When you set the pagination scheme to Row Ranges X to Y(with next and previous links), Number of Rows to 15 and Max Row count to 1000, I need to know what happens with the query. When the user selects the next (or previous) 15 records, does the region's query fire again and query all 1000 (or more) records?
    I hope this makes since. I just need to know if the application is selecting all the records over and over as the user move through the report.
    Thanks

    Thank You, Thank You, Thank You.
    That is indeed the point I am trying to make.
    My report is a SQL Query (PL/SQL Function body returning SQL Query) and is based on information provided in several PopUp LOVs. The more LOVs used, the more information provided to the WHERE CLAUSE, and therefore the less data returned to the screen.
    When the End User produces a small report, they are likely to want to sort it.
    But when they bring back huge amounts of data, they don't want it sorted. Especially not automatically sorted.
    In most cases, this is happening when we are joining two or three tables with say 10 million rows on each table. The join condition is good (meaning there is not a Cartesian Product) but the resultant data is 10 million rows - something you not likely want to sort. Even with a limit on the number of rows returned (Report Attributes - Layout and Pagination - Max Row Count) to something reasonable, like 500, the 10 million resultant rows are first being sorted and then the first 500 returned.
    So, yes, a "sort-enabled" report should NOT automatically sort. Which is what is happening.
    Of course, it might be a good thing to have some sort of Variable that we could set on a page to decide if we want automatic sorting. On most pages, an automatic sort is great - as the amount of data returned will always be small.
    On the pages where I have this problem, it would be great to do the automatic sort when one or more of the PopUp LOVs are populated. So, within a "After Submit" process I might want to turn automatic sorting on.
    Hey, if we are going to ask for an enhancement/change, we might as well ask for something really flexible.

  • Layout and Pagination... Limiting my data to top 500 records

    Hi,
    My report is based on SQL, it's displaying only top 500 records... May I know how to fix it...?
    I've tried different options under Report attibutes -> Layout and Pagination but no success yet
    Thanks

    Try closing OAE and the application if running.. Seems like the changes don't take effect until you come back into OAE... At least that is what mine does.

  • Apex 4.2.1: Region grid layout?

    See https://apex.oracle.com/pls/apex/f?p=57688:4
    Page template - One Level tabs - no sidebar. Theme 24
    The Grid Layout section in Region attributes has Start New Grid, Start new row/column, Column No or Automatic and Colspan attributes. How can I set the rowspan attribute so that, in the example page above, regions r1 and r2 are next to each other with no whitespace, regardless of the size of region r3? I thought I could easily set the rowspan of r1 to 2 and that would take care of it but maybe I am missing something.
    Help? Thanks

    VANJ.
    Did you check the html of the renderd page.
    Did is what I found.
    <table class="regionlayout" role="presentation" summary="">
      <tbody>
        <tr>
           <td valign="top">
               <section id="R8612284225122823493" class="uRegion clearfix"> //R1
           </td>
           <td rowspan="2">
              <section id="R8612284620818823496" class="uRegion clearfix">//R3
           </td>
         </tr>
        <tr>
           <td valign="top">
              <section id="R8612284400865823496" class="uRegion clearfix">//R2
          </td>
        </tr>
      </tbody>
    </table>As it is now R1 and R3 are renderd next to each other. And R2 is in a seperate row.
    So if R1 and R2 need to be next to each other R2 and R3 need to be swapped.
    It maybe something as simple as a wrong sequence.
    Nicolette

  • Table layout and image display problems

    Im having a few problems at the moment, designing a layout
    using tables. I need to have 3 seperate tables, 1 for the left
    side, 1 for middle and 1 for the right. However I can only get the
    left and middle table on the same row, after that the right table
    jumps down to the next row.
    My second problem is with some images displaying in the
    preview. 3 images wont display, they are the same extension (.jpg),
    in the same folder as the rest but unlike the others wont display.
    I can swap them out for other images which display fine so I cant
    understand why they arent showing.
    Any help would be most appreciated.

    > Im having a few problems at the moment, designing a
    layout using tables. I
    > need
    > to have 3 seperate tables, 1 for the left side, 1 for
    middle and 1 for the
    > right. However I can only get the left and middle table
    on the same row,
    > after
    > that the right table jumps down to the next row.
    Use a three column, 1 row table, and put one of your tables
    into each of the
    three cells.
    > so I cant understand why they arent showing.
    Show us the page, please.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Isileth" <[email protected]> wrote in
    message
    news:ev0dpc$60t$[email protected]..
    > Im having a few problems at the moment, designing a
    layout using tables. I
    > need
    > to have 3 seperate tables, 1 for the left side, 1 for
    middle and 1 for the
    > right. However I can only get the left and middle table
    on the same row,
    > after
    > that the right table jumps down to the next row.
    >
    > My second problem is with some images displaying in the
    preview. 3 images
    > wont
    > display, they are the same extension (.jpg), in the same
    folder as the
    > rest but
    > unlike the others wont display. I can swap them out for
    other images which
    > display fine so I cant understand why they arent
    showing.
    >
    > Any help would be most appreciated.
    >

  • Layout and Pagination Problem

    I had created a web page with a filter parameters on top of the web page and a report region with a report with an SQL query in PL/SQL Function Body Returning SQL Query. This is similar to the Issue Report in the Issue Tracker System example.
    The problem is if you are on the last page of this report and then click edit to edit the last record on this page and delete it in the edit webpage then when you return to the Report page, you will see something like 1-5 of 25 in the list with a Next link on the right. If I click the Next link it just displays the same page again. You have to select some other item in the list then it will display some data again. How can I avoid coming back to an empty web page? Or just at least display the previous button so they can go to the last page of data which is now the last page of data. This does not seem quite right here. Also a similar problem happens with filtering if you are on the last web page. Sorry I am wordy and also new to HTML DB!

    I get this problem as well. The workaround is to fire a reset pagination process when the submit/delete button is pressed.
    This will then reset the pagination to the first record on delete or submit avoiding the blank page problem (only draw back is you may be on the last record page and will now find your self back at the first record, but i think it beats getting a blank page!!)

  • Report - Layout and Pagination bug

    Hello,
    I am using Oracle 10g XE. I was trying to add pagination to a report, it is working ok but if I select for the display position "Top and Bottom" only the bottom pagination is visible.
    Is this a bug?
    Catalin Florean.

    Hi,
    There are Top and Bottom – Left and Top and Bottom – Right.
    I suppose that you have something wrong in the SQL Query or in the report.
    Make a new report using the wizard. Then use Report Template – Standard and Top and Bottom – Left.
    Konstantin

  • Layout and Pagination

    Hi,
    I am using sql based report... my issue is that report only shows 15 records...
    how can I change the number of rows from 15 to ALL... Please advice
    Thanks

    Hi,
    Go to Report Attribute and change the Number of Rows and Maximum Row Count to a higher limit. Thanks.
    Regards,
    Manish

  • TabExplorer layout and Paginator

    Hello!
    I am facing this incident:
    I am using a KM Navigation iView with a TabExplorer layoutset (the default layoutset provided by SAP). These KM Navigation & layoutset fail when I click on the pager links at the botton of the iview.
    I mean, when I click on the link in order to move to the next or previous page nothing happens, I am always stuck on the same page (by the way, the first page).
    I hope to be clearly enough.
    Any ideas??
    Any help will be welcome, and thanks in advance.
    Greetings
    Marcelo.
    ps: I am using Netweaver 2004s, EP 7 SP 11

    Hello again:
    searching at SAP Notes I found this:
    Note 987865 - KMC NW04 SPS20 / KMC SAP NetWeaver 7.0 SP12.
    and it textually says that: "UI: Pager did not work inside the Tab Collection Renderer."
    well, I do not know waht to do now........please help me!!
    thanks!!
    Marcelo

  • Report Layout and Report Query APEX tables

    Does anyone know a quick way to delete report layouts and report queries from the APEX tables that they are stored in. We currently have to go into the shared components area and delete them one by one using the builder. If we could just get the table that they are stored in and delete them by name, that would be extremely useful. Oracle does not support this type of data manipulation.
    Thanks,
    Andrew

    Hi,
    There are Top and Bottom – Left and Top and Bottom – Right.
    I suppose that you have something wrong in the SQL Query or in the report.
    Make a new report using the wizard. Then use Report Template – Standard and Top and Bottom – Left.
    Konstantin

  • How to get the sum of  a column in a table layout region

    i have page table layout region and i have many rows in that ...i have a column say xyz now i want the sum of all xyz in all rows ...is that possible ..if it is how..????
    please help me out in this issues...so that i can proceed further with my work..im stuck otu here....if the solution r there in the devguide please tell me where it is ..i mean under which section...bcoz it 1400page document...

    If you are mentioning about table/advanced table region you can enable totalling in those regions. Please check the Table / Advanced Table section as appropriate in Chapter 4 of the dev guide.
    If it is not a table / advancedTable then you will have to programmatically total the column value and display it in the appropriate cell.

  • Table layout w.r.t other tables and text while inserting/deleting rows.

    I have 3 tables in a single page. One is left aligned and other two are right aligned. Then there is some text below the tables. 
    Now when I delete some rows from Table-1 the left aligned one, the Table 2 and text shift up filling the space below Table1.
    Now I don't want the text/table to shift up/down when I add/delete rows from Table1 i.e Table1  should expand/contract in the empty space below it.
    Now If I do the same thing for Table3 (Right aligned one) i.e add/delete rows there is no effect on text as shown :
    All 3 tables are same and have exact positioning and other properties.
    Please suggest any solution as I would be populating the table through word automation service (interop).

    Another approach would be to use nested tables, with your 'outer' table having two columns and the inner tables going into different columns. You can hide the outer table's cell borders so its presence is less apparent. If the Outer table has auto row
    height, it will adjust to accommodate whatever row addition/deletion you do to the inner tables. The only proviso is that the inner tables shouldn't have 'around' text wrapping. The two rhs tables can go into the same cell - all they need is a separating paragraph.
    With this layout, the text will always remain below the outer table.
    Cheers
    Paul Edstein
    [MS MVP - Word]

  • [svn:osmf:] 10700: Extending layout and regions unit tests.

    Revision: 10700
    Author:   [email protected]
    Date:     2009-09-29 15:02:28 -0700 (Tue, 29 Sep 2009)
    Log Message:
    Extending layout and regions unit tests.
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/MediaFrameworkTests.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/gateways/TestRegionSprite .as
    Added Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/layout/TestLayoutUtils.as

  • SQL Query (updateable report) Region - Conditionally Hide and Set Values

    SQL Query (updateable report) Region - Conditionally Hide and Set Values
    Outline of requirement :-
    Master / Detail page with Detail updated on same page using SQL Query (updateable report).
    The detail region has the following source
    SELECT item_id,
           contract_id,
           CASE WHEN hardware_id IS NOT NULL THEN
                   'HA'
                WHEN backup_dev_id IS NOT NULL THEN
                   'BD'
                WHEN hardware_os_id IS NOT NULL THEN
                   'HS'
           END item_type,
           hardware_id,
           backup_dev_id,
           hardware_os_id
    FROM   "#OWNER#".support_items
    WHERE  contract_id = :P26_CONTRACT_IDThe table support_items implements arced relationships and has the following columns
    CREATE TABLE SUPPORT_ITEMS
      ITEM_ID         NUMBER                        NOT NULL,
      CONTRACT_ID     NUMBER                        NOT NULL,
      HARDWARE_ID     NUMBER,
      BACKUP_DEV_ID   NUMBER,
      HARDWARE_OS_ID  NUMBER
    )A check type constaint on support_items ensures that only one of the fk's is present.
          (    hardware_id    IS NOT NULL
           AND backup_dev_id  IS NULL
           AND hardware_os_id IS NULL
    OR    (    hardware_id    IS NULL
           AND backup_dev_id  IS NOT NULL
           AND hardware_os_id IS NULL
    OR    (    hardware_id    IS NULL
           AND backup_dev_id  IS NULL
           AND hardware_os_id IS NOT NULL
          )    Hardware_Id is a FK to Hardware_Assets
    Backup_dev_id is a FK to Backup_Devices
    Hardware_os_id is a FK to Hardware_op_systems
    The Tabular Form Element based on item_type column of SQL query is Displayed As Select List (based on LOV) referencing a named list of values which have the following properties
    Display Value     Return Value
    Hardware Asset    HA
    Backup Device     BD
    Computer System   HSThe Tabular Form Elements for the report attributes for hardware_id, backup_dev_id and hardware_os_id are all Displayed As Select List (Based on LOV).
    What I want to do is only display the Select List for the FK depending on the value of the Select List on Item Type, e.g.
    Item_Type is 'HA' then display Select List for hardware_id, do not display and set to NULL the Select Lists for backup_dev_id and hardware_os_id.
    Item_Type is 'BB' then display Select List for backup_dev_id, do not display and set to NULL the Select Lists for hardware_id and hardware_os_id.
    Item_Type is 'HS' then display Select List for hardware_os_id, do not display and set to NULL the Select Lists backup_dev_id and hardware_id.
    There are properties on elements to conditionally display it but how do we reference the values of the SQL query Updateable region? they are not given a page item name?
    Also on the Tabular For Elements there is an Edit tick against a report item - however when you go to the Column Attributes there is not a property with which you can control the Edit setting.
    What's the best way of implementing this requirement in APEX 3.1?
    Thanks.

    >
    Welcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already), and update your profile with a real handle instead of "user13515136".
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
    I have a multi-row region that displays values and allows entries in a number of fields.Provide exact details of how this has been implemented. (An example on apex.oracle.com is always a good way to do this.)
    I should like the fields to be conditional in that they do not permit entry, but still display, if certain conditions apply (e.g. older rows greyed out). Can this be done? Almost anything can be done, often in multiple ways. Which are appropriate may be dependent on a particular implementation, the skills available to implement it, and the effort you're willing to expend on it. Hence it's necessary to provide full details of what you've done so far...

  • How to remove the Personalize link from the table layout displayed on Page.

    While i create a new page and a table layout is created on this page it displays a link called Personalize this table. For every table i create the same is displayed.
    If 10 such table layouts are there i get personalize options on all such 10 layouts on same page.
    If anyone of u knows @ this please help me out how to remove that link from the page.

    You can set the value for the profile FND: Personalization Region Link Enabled / FND_PERSONALIZATION_REGION_LINK_ENABLED to No.
    For additional information, please check the Personalization topic of the Oracle Application Framework Profile Options chapter in the OA Framework developer's guide.

Maybe you are looking for

  • Pearl wont play videos

    I converted several videos usnig different programs that convert to the proper format for the pearl. I keep getting the message "unable to play content" The 2 programs I have tried are Aimersoft Video Converter (trial) and the freeware  "Blackberry V

  • Could 'export button' show only pdf, and excel only?

    Hai, I am using report viewer, it has export button in that header. Could 'export button' show only pdf, and excel only? So the report just only export pdf only or excel only. Technology: Asp.net Vs2010 SSRS2012 Windows 7

  • Selection Screen Variant of a Report program

    Hi All, I am having a F4 help to select a path of few folders and files from local drive in my report program. After I select this path, I am saving it as a variant. But this variant will not work for the next time I login to SAP. Please let me know

  • Can't update Adobe programs. Update option greyed out, DL'd update fails. Win7, PScs6, AIcs5, FLcs6?

    None of my Adobe programs give me the option to update. The option is greyed out under the Help menu. It fails when trying to update through Bridge. When I download the update through a browser and try to update that way, I get the message: I have ad

  • ORA-00600: 内部错误代码, 参数: [6749] 如何处理?

    oracle版本: 1     Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi 2     PL/SQL Release 10.2.0.5.0 - Production 3     CORE     10.2.0.5.0     Production 4     TNS for 64-bit Windows: Version 10.2.0.5.0 - Production 5     NLSRTL Version