The part of report of a report region table setting to fill the region

I need to make them with any part of the report, the section of report fills the width of the region, the column spacing all also in the entire region.

The screenshot below shows the report occupies only a small part of the region. I need the region to this width to maintain the page layout consistency between pages.

I can change the CSS so that it affects

. Report-standard-alternatingrowcolors {}

Width: 750px;

}

And then the same set the columns to specific width, but this application is displayed on a number of different resolutions, thereby affecting the specific widths is not all good.

If I value percentage widths it does not.

Any ideas?

Screen Shot 2014-10-24 at 10.04.52.png

The following screenshot shows what I want to achieve, even if it made specific widths specifying, in px, which means that it is not scalable for different resolutions.

Screen Shot 2014-10-24 at 10.08.42.png

The external table that contains the table of standard report also must be set to 100% width. Change the CSS rule:

table[id^="report_"],
.report-standard {
  width: 100%;
}

Tags: Database

Similar Questions

  • 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.

  • ORA-20987: APEX - interactive report region does not exist in the application

    ORA-20987: APEX - interactive report region does not exist in the application

    I'm trying to get the query of an international registration (interactive report) on a specific page in my application.

    The code I am using is thesi:

    create or replace function get_report_query (nPage_id number)

    return varchar2

    as

    l_report apex_ir.t_report;

    l_query varchar2 (32767).

    l_list varchar2 (32767).

    number of nRegion_id;

    number of nIR_id;

    OWA.vc_arr nm;

    VL owa.vc_arr;

    BEGIN

    SELECT region_id

    IN nRegion_id

    Of apex_application_page_regions

    WHERE application_name = "E-BRIL.

    AND page_id = nPage_id

    AND source_type = "interactive report";

    nIR_id: =.

    apex_ir.get_last_viewed_report_id (p_page_id = > nPage_id,)

    p_region_id = > nRegion_id);

    NM (1): = "DUMMY_JUST_TO_SET_UP_OWA_UTIL";

    VL (1): = 'WHATEVER ';

    OWA.init_cgi_env (nm.count, nm, vl);

    l_report: = APEX_IR. () GET_REPORT

    p_page_id = > nPage_id,

    p_region_id = > nRegion_id,

    p_report_id = > 0);

    l_query: = l_report.sql_query;

    because me in 1.l_report.binds.count

    loop

    l_list: = l_list | i||'. '|| l_report. Binds (i) .name | » ='|| l_report. Binds (i) .value;

    end loop;

    Return l_query;

    end;

    /

    I want to get the query of the IR on my page 3. And I run;

    get_report_query (3)

    That's what I get:

    ORA-20987: APEX - interactive report region does not exist in application, page 3 and 1278226325207011749 region. -Contact your administrator of the application.

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 630

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 911

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 33

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 55

    ORA-06512: at "EBR_OWNER. GET_REPORT_QUERY', line 19

    The regio_id seems ok, because when I ask this region_id of apex_application_page_regions, id 1278226325207011749 is returned.

    Page 3 is also correct.

    I tried to follow Denes Kubicek his blog (Denes Kubicek ApEx BLOG: interactive report query is).

    What I'm doing wrong here?

    We use the Apex 4.2.

    Thanks in advance.

    Reg,

    Chris

    1717220 wrote:

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

    ORA-20987: APEX - interactive report region does not exist in the application

    I'm trying to get the query of an international registration (interactive report) on a specific page in my application.

    The code I am using is thesi:

    create or replace function get_report_query(nPage_id IN number)
    return varchar2
    as
    l_report  apex_ir.t_report;
    l_query  varchar2(32767);
    l_list  varchar2(32767);
    nRegion_id number;
    nIR_id number;
    nm  owa.vc_arr;
    vl  owa.vc_arr;
    BEGIN 
    
        SELECT region_id
        INTO nRegion_id
        FROM apex_application_page_regions
        WHERE application_name = 'E-BRIL'
          AND page_id = nPage_id
          AND source_type = 'Interactive Report';
    
        nIR_id :=
          apex_ir.get_last_viewed_report_id (p_page_id        => nPage_id,
                                            p_region_id      => nRegion_id);
    
        nm(1) := 'DUMMY_JUST_TO_SET_UP_OWA_UTIL';
        vl(1) := 'WHATEVER';
        owa.init_cgi_env( nm.count, nm, vl );
    
        l_report := APEX_IR.GET_REPORT (
                        p_page_id  => nPage_id,
                        p_region_id => nRegion_id,
                        p_report_id => 0); 
    
        l_query := l_report.sql_query;
        for i in 1..l_report.binds.count
        loop
            l_list := l_list||i||'. '||l_report.binds(i).name||'='||l_report.binds(i).value;
        end loop;
    
    return l_query;
    end;
    

    I want to get the query of the IR on my page 3. And I run;

    get_report_query (3)

    That's what I get:

    ORA-20987: APEX - interactive report region does not exist in application, page 3 and 1278226325207011749 region. -Contact your administrator of the application.

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 630

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 911

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 33

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 55

    ORA-06512: at "EBR_OWNER. GET_REPORT_QUERY', line 19

    The regio_id seems ok, because when I ask this region_id of apex_application_page_regions, id 1278226325207011749 is returned.

    Page 3 is also correct.

    I tried to follow Denes Kubicek his blog (Denes Kubicek ApEx BLOG: interactive report query is).

    What I'm doing wrong here?

    We use the Apex 4.2.

    The '0' in line 31 should be "nIR_id".

    What is the purpose of the lines 24-26?

  • Report regions - use of the Ref Cursor?

    APEX 4.2

    See http://mikesmithers.wordpress.com/2012/02/22/getting-apex-to-play-with-ref-cursors

    The above article is older than 2 years. The techniques shown in the link above still valid today if we want to create a report region in the APEX are based on a function that returns a Ref Cursor? Are there improvements in this area for the next APEX 5.0 and/or database Oracle 12 c?

    Thank you

    HELEN wrote:

    APEX 4.2

    See http://mikesmithers.wordpress.com/2012/02/22/getting-apex-to-play-with-ref-cursors

    The above article is older than 2 years. The techniques shown in the link above still valid today if we want to create a report region in the APEX are based on a function that returns a Ref Cursor?

    If the function returns the ref cursor is the only point of access that you have data then Yes, it probably is. If you have direct access to the underlying database objects and the function does not have something very complicated, then you are probably better off creating your own body of the function returning SQL query data source.

    Everything about the dynamics of ref Cursor now I divided in 2 layers, with a function for generating the dynamic SQL and another for bind parameters open the ref cursor. APEX apps can then reuse the functions of SQL query in function body return SQL query data sources (if you take a bit of care to keep the bind variable names vaguely APEX-point-friendly).

    Are there improvements in this area for the next APEX 5.0 and/or database Oracle 12 c?

    See this for the technical background on why APEX is not yet support ref Cursor and this for more information of the Oracle team on the possibility of future support. Obviously, he did not he in 4.1. I suspect that data REF CURSOR region sources depended on a minimum requirement of DB of the 11.1.0.6 (where was introduced support for the conversion of the REF CURSOR in the cursors DBMS_SQL). As minimum DB for APEX 5.0 version is 11.1.0.7, it would be a possible feature for 5.0, but it is not classified as one.

  • Model of User Interface for interactive report region

    3.2 where we establish the model of user interface for interactive reports region?

    No matter what on the theme of the box I go to, the region of interactive reports shows the same. What and where do I change the model so that alternate lines use two different colors?

    There is no model for interactive reports as for a 'normal' report You need to edit the CSS and provide your own for this purpose.

    I think that most of the things are marked with the #apexir - firebug with combustion chamber is priceless. This thread may help:

    Re: changing the appearance of the interactive report.

  • Report region editable attributes

    I have a report region populated by a SQL query, returns a single record.

    I've edited two of the attributes and the selected item of tabular form > text field.

    I want now to refer to these two fields in a process the PL/SQL block, when I look at the HTML source code of the page I see name = "f01" name = "f02" for these items. This can be changed? I tried to change the attributes of the element name = "MyField", but I find myself with two attributes for the name of the entry.

    What is the best way to handle something like this and reference fields in a way that is "safe"?

    Hello

    You should really look into the APEX_ITEM-api.
    Check http://download-uk.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28550/api.htm#BGBHDGAI

    However, I will give you a little trick to manage those f01, f02 etc.

    Apex stores it automatically in a table for you, so if you make them to text fields, you can access it through
    APEX_APPLICATION. G_F01 name = f01, G_F02 being the name = f02 - and it is possible to have from 1 to 50.

    If your query always returns just one line, then you can access it through

    Start
    insert into values insert_table (APEX_APPLICATION. G_F01 (1), APEX_APPLICATION. G_F02 (1));
    end;

    Or if you have several lines;

    Start
    BECAUSE me IN 1.APEX_APPLICATION. G_F01. COUNTY
    LOOP
    insert into values insert_table (APEX_APPLICATION. G_F01 (i));
    END LOOP;
    end;

    However to use with updates, you also likely a hidden item aswell for reference by a sort of «update (...)» "where unique_id = apex_application.g_fXX (i).

    I recommend that you spend 10 minutes reading of a few examples in the link above - I'm sure it'll be useful.

    See you soon,.
    Vidar

  • Need help on creating a report after you set criteria

    Hello world

    I been through ebooks and had the idea of the apex.
    To give an example of what I want to do is I want to open up two areas of dates and selector of the report between the dates that have been defined in the selectors of dates
    These date picker field may be on the same page of the report, or they could be on another page. Once create button then the ratio between the dates that you define should appear

    Any thoughts?

    Thank you now

    Create a page with 2 parts...

    1st region would be of type html. Would have a series of selectors of dates, add validation to confirm that the TWO have selected values, and the departure date is less than OR equal to the date of end submit button to submit the page and generate the report.

    2nd region would be a region in relation to a selection with a where clause filtering on dates at the top clause. to visible region report only when the dates have a value.

    Thank you

    Tony Miller
    Webster, TX

    Never give up dreams!
    JMS

    If you answer this question, please mark the thread as closed and give points where won...

  • Classic report region is not refreshing using the DA

    Apex 4.2.2 on Oracle 11.2 use EPG in Linux

    I have a Camembert and I want user to click on a section and refresh a report classic region under the graph on the same page.  I've used various methods to try to get this working, but none succeeded.  Here's what I have right now - when a pie is clicked, a value is returned to a text P19_STATUS field in the region of report using javascript in a DA:

    AnyChart.getChartById ($("#chart2_chart_object").attr ("id"))

    .addEventListener ("pointClick", Function {}

    $s ("P19_STATUS", e.data.Name);

    });

    It works fine as I can see the value that corresponds to the label in the chart.  I created a second DA with an event of amendment to article P19_STATUS. There is a REAL action - Refresh.  Selection type:, Region: classic report (40).  I put also enable partial Page Refresh Yes on the classic report and the elements on the Page to be sent to: P19_STATUS.  When the user clicks on the cake the value is in P19_STATUS, but the report is not updated.  FYI, I also tried $('#report_region_id') .trigger ("apexrefresh");  in the second DA but which doesn't work anymore.  I want only the region refresh, not the page.  Please help - I'm fairly new to Apex, so please be as detailed as possible.  Thank you!

    Nicolette wrote:

    User12037683

    The missing part was that the report is a subregion of the chart area.

    Under regions have their own model of the region. Instead the use of models from the parent area area unit.

    Models of the region can be specified for the sub regions as all other regions. In this case it seems to be a problem with the sub-region model as it appears in the list of model as 48560037058667637086selection.

  • 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.

  • How to refresh the report region change which column of report selection list

    Hello
    I worked with apex 4.2 and I create a classic report with list (named loved) select a column in the list change in report, update the table with the new value via JavaScript (change) call and woke up very well, and I change the color of the line was updated to make it different from the other lines now I want to update to the report after doing update without submitting the page to show the new color of line update.
    I called javascript:apex.submit() in the update function, but

    My Question
    1. How do I refresh the report after change report column list without sending page
    2-can we enter column name selection list report to submit the Page to refresh the report area


    Thank you
    Ahmed

    See my answer above!

    Here's what I did:

    • Created two hidden page items

    • Created a dynamic action on the page with three real actions. (1) set the item values page. (2) to execute code to update the plsql table. (3) update the region report

    Thank you
    Vikram

  • Set the focus to a region in report after report region to choose value (user)

    Hello

    On my page, I have 4 regions in report SQL Query report (between them). After selecting a value (report number of region 3 with the link of the column), the result indicated in report number 4 of the region (user). However, the emphasis is on report number 1 in the region. The user sees that the results should scroll down to see the answer (in report number 4 of the region).

    Anyone has a solution for me with an example. Thank you.

    Hello:

    In the header of the region that contains the report 4 Add the following anchor

    
    

    Change the link on the column in the 3 report to add "#report4" at the end of the URL. Something like

    f? p = & APP_ID.: 113: & SESSION. : & DEBUG. : P113_X: OBJECT_NAME # # rapport4

    CITY

  • How to access the values in column fron a report (region)

    Hello

    In the region of report footer section, I want to access the value of a column (e.g. name col = COL01) for first place. I know that I can access total number of rows using #TOTAL_ROWS #. Is it possible to do this?

    Thanks in advance,
    Paresh

    Hello

    I did not have a v2 to try this out, but try this:

    1. in your report, add the following in the header of the region:

    <div id="TheReport">
    

    2 - in the foot of the region:

    </div>
    <script type="text/javascript">
    var t = document.getElementById("TheReport");
    var r = t.getElementsByTagName("TABLE")[1];
    var rows = r.rows;
    var tds = rows[0].cells;
    var k;
    if (tds)
    {
     for (k = 0; k < tds.length; k++)
     {
      if (tds[k].id == 'ENAME')
      {
        alert(rows[1].cells[k].innerHTML);
      }
     }
    }
    </script>
    

    Remove your old javascript code and replace line alert() with all you need to do with the value of .cells [k] .innerHTML lines [1].

    This includes in your report in a div tag The JavaScript find it and gets the second table (the table report is a table of the area which is now within the DIV tag). As older versions of the Summit has not used the attribute "headers" on cells, we check the ID values for the column headings in row [0] - once we found the right column, we retrieve the corresponding value according to the data in row of lines [1].

    Andy

  • Download the CSV reports region: a dynamic file name can be used?

    Request Express 3.1.1.00.09
    Oracle Database 10 g Enterprise Edition Release 10.2.0.4.0 - 64 bit
    Firefox 3.0.10

    Hi all

    In Application Builder-> attributes report-> export-> exit report CSV activate = 'Yes'

    I want to assign dynamic file name, based on a variable in the application.
    The text in this box always seems to be used as a literal value.

    I want to do possible?

    Kind regards
    Bob.

    Yes, in the report name field, you can use a page or application as file name... This is the syntax: & my_item. where my object is a page element or application...

    Thank you

    Tony Miller
    Webster, TX

  • Drag and drop parts of report

    Hi all
    Does anyone know where I could find a code example to drag and reposition a report after executing it? Our reports have many columns and to be able to drag them to the left or right would be fairly smooth. I can't find a sample.

    Thank you

    Hello

    To me it seems that you have a part of the comment of this jquery function

    $(document).ready(function(){
    // $("#draggable").draggable();
    

    Replace this Pentecost

         $(function() {
              $("#draggable").draggable();
         });
    

    change your report to any model model
    and the header of the region

    and the foot of the region

Here's how working example
http://Apex.Oracle.com/pls/OTN/f?p=40323:4

Published by: jarola on August 18, 2009 12:45 AM

  • Refreshing a report region does not work

    Hello

    I have a report interactive area (emp) and a P1_ename_filter (list of type selection) filter field with dynamic action on the change that has to refresh the emp region.

    But it does not work: I see the discount on the intermittent, but then there's the same record without applying the filter

    I have the example on apex.oracle.com:

    https://Apex.Oracle.com/pls/Apex/f?p=4550:1:103040501310506:

    https://Apex.Oracle.com/pls/Apex/f?p=102726:LOGIN_DESKTOP:104044067688962:

    user and developer demo/demo (TR1 workspace)

    Concerning

    Gianpaolo

    gianpagi wrote:

    I have a report interactive area (emp) and a P1_ename_filter (list of type selection) filter field with dynamic action on the change that has to refresh the emp region.

    But it does not work: I see the discount on the intermittent, but then there's the same record without applying the filter

    The P1_ENAME_FILTER element did not appear in the attribute of Page elements to be submitted for the IR region. This is required to set the filter value in session state before running the report query when the report is refreshed.

  • Maybe you are looking for

    • If I switch to photoshop CS4 ios10 stops

      I'm on a desktop MAC, currently 10.7.5. Photoshop CS4 is running fine. If I'm going to 10.8 or more PS might stop running?

    • iPhone 5 c randomly open and use apps

      Ive had my Iphone 5 c for a few years and never had any problems. But recently I've had a few problems with applications seemingly randomly are opened and used. Used by sense that things will be clicked or pressed. For example, once I looked at my ph

    • How to prevent the drop-down menu when you click in the URL field?

      Hello For some time there is Safari displays a short title in the URL field when you view a web page (for example, at the moment it says "Apple Inc").  Quite often I want to drage the actual URL in a note or on the desktop for later use.  Whenever I

    • Fable the defect of product key chapters lost

      I bought a copy of the fable the lost chapter, earlier today and when I got to enter the product key, he just told me it was invalid. I checked the key and he retried, but still it did not work. Then I checked on these forums and found people with si

    • My OfficeJet 6500 E710N-Z "Stall".

      My Officejet 6500 E710N-Z began to lock on. The printer screen goes black and the power button slowly fades and brightens. Documents align in Quebec, but nothing happens. When I unplug the cable to powere and then re - connect, printing works fine...