5 interactive Apex reports column dress white-space: nowrap

before the apex 5 with the text of the header as follows, prevents the column packing. This does not work in 5 APEX, y at - it alternative workaround to avoid column wrap in apex 5 IR?

< style type = "text/css" >

} table.apexir_WORKSHEET_DATA_td {white-space: nowrap ;}}

< / style >

Johnny wrote:

before the apex 5 with the text of the header as follows, prevents the column packing. This does not work in 5 APEX, y at - it alternative workaround to avoid column wrap in apex 5 IR?

Interactive report markup has been completely redesigned in APEX 5.0 to support more than one IR per page, which means that all the old CSS and JS customizations will stop working. APEX 5.0 equivalent is to use the following style sheet in CSS Inline property page:

.a-IRR-table td {
  white-space: nowrap;
}

Tags: Database

Similar Questions

  • Classic report: CCS Style: white-space: nowrap

    Hi all

    I want my report display its data to be not packaged for all columns. I want to change the columns and put its CSS Style: white-space: nowrap

    I have a lot of columns like 300 +. How can I change only once? Is there a way?


    Thank you very much.

    Hello

    Then try header HTML of the page

    
    

    Kind regards
    Jari

  • wrap the report with no white space column

    I'm forcing the clothing of a classic report column that contains no white space. Don't know why the data would look like this but I have
    they have a customer who likes to do this.

    I used the following to force the skin of a long column
    Column formatting > > CSS Style > >

    Width: 300px; Display: block; white-space: normal;

    It works fine except when the long column has no white space.
    Example: NOWISTHETIMEFORALLGOODMENTOCOMETOTHEAIDOFTHEIRCOUNTRYNOWISTHETIMEFORALLGOODMENTOCOMETOTHEAIDOFTHEIRCOUNTRYNOWISTHETIMEFORALLGOODMENTOCOMETOTHEAIDOFTHEIRCOUNTRY

    I created an example on apex.oracle.com

    http://Apex.Oracle.com/pls/Apex/f?p=34817:2:106494754085272:no:

    Login:[email protected]
    password: whiskers

    Published by: pam499057 on May 15, 2013 04:00

    Published by: pam499057 on May 15, 2013 04:01

    pam499057 wrote:
    I'm forcing the clothing of a classic report column that contains no white space. Don't know why the data would look like this but I have
    they have a customer who likes to do this.

    I would like to know why too. It is a strangely common on this forum problem. Where people get all this data that contains no spaces? What is it? Sequences of DNA? Chemical names? Artificial German made up words?

    I used the following to force the skin of a long column
    Column formatting > Style CSS >

    Width: 300px; Display: block; white-space: normal;

    It works fine except when the long column has no white space.
    Example: NOWISTHETIMEFORALLGOODMENTOCOMETOTHEAIDOFTHEIRCOUNTRYNOWISTHETIMEFORALLGOODMENTOCOMETOTHEAIDOFTHEIRCOUNTRYNOWISTHETIMEFORALLGOODMENTOCOMETOTHEAIDOFTHEIRCOUNTRY

    You must use the property overflow/wrap-wrapping :

    display: block; width:300px; word-wrap: break-word;
    

    (You can leave white-space: normal as this is the default value.)

    However, this does not work in Internet Explorer using a theme theme 13 quirks mode, so you should switch to a theme standard mode. What APEX version do you use? (You should always include this information in your message).

  • Report interactive apEx - line column break?

    Hello
    I use ApEx 4 and in the application created the interactive reports page. In the column "Telefon_direktni" is display phone number in the format (0xx) xxx - xxx (phone number for Croatia). When I enter the phone number, I get just 9 digits, so the SQL select query put () and - in the report results. When I have 2 phone numbers I just enter 18 digits, then select request divide number in format (0xx) xxx - xxx, (0xx) xxx - xxx. But my problem is... result interactive report for 2 phone numbers it looks like this:

    (0xx) xxx - xxx, (0xx)
    xxx - xxx

    I want thet result looks like this:

    (0xx) xxx - xxx,.
    (0xx) xxx - xxx

    How can I put line breaks in a select query after ',' it seems I want.

    This is my select statement:
    select
    case when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI like('_1%') and length(LR.TELEFON_DIREKTNI) < 10 then
                                         '('||substr(LR.TELEFON_DIREKTNI,1,2)||') '||substr(LR.TELEFON_DIREKTNI,3,3)||'-'||substr(LR.TELEFON_DIREKTNI,6,4)
                  when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI like('_1%') and length(LR.TELEFON_DIREKTNI) > 10 then
                                         '('||substr(LR.TELEFON_DIREKTNI,1,2)||')'||substr(LR.TELEFON_DIREKTNI,3,3)||'-'||substr(LR.TELEFON_DIREKTNI,6,4)||',      '||'('||substr(LR.TELEFON_DIREKTNI,10,2)||') '||substr(LR.TELEFON_DIREKTNI,12,3)||'-'||substr(LR.TELEFON_DIREKTNI,15,4)
                  when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI not like('_1%') and length(LR.TELEFON_DIREKTNI) < 10 then
                                         '('||substr(LR.TELEFON_DIREKTNI,1,3)||') '||substr(LR.TELEFON_DIREKTNI,4,3)||'-'||substr(LR.TELEFON_DIREKTNI,7,3)
    when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI not like('_1%') and length(LR.TELEFON_DIREKTNI) > 10 then
                                         '('||substr(LR.TELEFON_DIREKTNI,1,3)||')'||substr(LR.TELEFON_DIREKTNI,4,3)||'-'||substr(LR.TELEFON_DIREKTNI,7,3)||', ('||substr(LR.TELEFON_DIREKTNI,10,3)||') '||substr(LR.TELEFON_DIREKTNI,13,3)||'-'||substr(LR.TELEFON_DIREKTNI,16,3)
                  end as TELEFON_DIREKTNI
    Published by: user10410320 on March 30, 2011 10:14

    Try:

    select
    case when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI like('_1%') and length(LR.TELEFON_DIREKTNI) < 10 then
                                         '('||substr(LR.TELEFON_DIREKTNI,1,2)||') '||substr(LR.TELEFON_DIREKTNI,3,3)||'-'||substr(LR.TELEFON_DIREKTNI,6,4)
                  when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI like('_1%') and length(LR.TELEFON_DIREKTNI) > 10 then
                                         '('||substr(LR.TELEFON_DIREKTNI,1,2)||')'||substr(LR.TELEFON_DIREKTNI,3,3)||'-'||substr(LR.TELEFON_DIREKTNI,6,4)||',
    ('||substr(LR.TELEFON_DIREKTNI,10,2)||') '||substr(LR.TELEFON_DIREKTNI,12,3)||'-'||substr(LR.TELEFON_DIREKTNI,15,4) when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI not like('_1%') and length(LR.TELEFON_DIREKTNI) < 10 then '('||substr(LR.TELEFON_DIREKTNI,1,3)||') '||substr(LR.TELEFON_DIREKTNI,4,3)||'-'||substr(LR.TELEFON_DIREKTNI,7,3) when LR.TELEFON_DIREKTNI is not null and LR.TELEFON_DIREKTNI not like('_1%') and length(LR.TELEFON_DIREKTNI) > 10 then '('||substr(LR.TELEFON_DIREKTNI,1,3)||')'||substr(LR.TELEFON_DIREKTNI,4,3)||'-'||substr(LR.TELEFON_DIREKTNI,7,3)||',
    ('||substr(LR.TELEFON_DIREKTNI,10,3)||') '||substr(LR.TELEFON_DIREKTNI,13,3)||'-'||substr(LR.TELEFON_DIREKTNI,16,3) end as TELEFON_DIREKTNI

    Although I don't think it's a good way to store/format multiple phone numbers.

  • Simple questions about interactive Apex reports

    I have not yet made many experiments with interactive reports, and a few weeks ago, I heard a colleague that I should not create them. He told an interactive report in our environment of production - according to him, if a user changes the interactive report (for example, adding or dropping a column), other (s) see the same changes that have been made by the first user, so this interactive report cannot have its columns or content is personalized for each user because each user will need to see its own version of the interactive report.

    Because it is expected that each user can see their own version of interactive reports, it discouraged me to go forward. I need to understand this situation because I'm about to release another interactive report in a new page of the Apex - and overcome this if possible.

    Another question: is it possible to replace Oracle reports with export to PDF - Apex and this would include customized logo, header, trailer, and other features of Oracle reports? Certainly not at 100%, but some of these features, such as reports of matrix - they do? Right now, I put reports in packs of function that returns custom types and activities of logic inside the function that returns a type Apex them simply returns by selecting its data, but this question has crossed my mind because I would like to release the Apex of other software development environment.

    I use version 4.2 of the Apex.

    Hello

    There is an attribute on interactive reports where you can define whether the user can save it s own versions of the report, removing columns or adding filters, but the main report is always the same for all users, just as it has been defined by the developer of.

    On PDF printing, I use Jaspersoft Studio to do. It s free and very useful.  There is a package called jrxml2pdf developed by Andreas Weiden, that allows you to print reports of APEX jaspersoft.

    It may be useful

    Best regards.

  • Style CSS (report column attributes) does not

    I found that CSS Style settings for a column in the report only seem to work if you use a "Standard report column. Because the report is wider than the screen, some columns are packaging, making the report is not not-that-readable nice.

    Unfortunately, I have the need to define certain columns in report where unwanted packaging occurs as "display text (based on LOV, does not save the State)" and tried to avoid using packing "white-space: nowrap;" or by specifying fixed wide, but it seems I'm out of luck - y at - it a way around this (except by making the report query using a huge DECODE clause and definition of the "Standard report Column" column once again who) somewhat makes the useless LOV except for the selection list in the data entry form)? What is happening on APEX 3.12.
    On the other hand - is this expected behavior?


    Thanks in advance,

    Holger

    On the other hand - is this expected behavior?

    It looks like it, or it's a [bug of long-standing | http://forums.oracle.com/forums/thread.jspa?messageID=1126613]. I tried it (but only have access to APEX 3.0 right now) and none of the attributes of the form element or column formatting tabular style/class/custom CSS are applied. If this is not a bug then it there as an enhancement request.

    In the meantime, you will have to work around it.

    other than the execution of the report query by using a huge DECODE clause

    Is it necessary due to a static LOV? If it is dynamic, based on a table/view, get the value of research in the query by a scalar subquery or join have a Standard report column then you can use the attributes of class/style/custom CSS formatting of column.

    You can stick with LOV text display and create a named column report model customized help [col/colgroup | http://reference.sitepoint.com/html/colgroup] to specify fixed-width columns.

  • How you trigger sort column of the APEX report interactive page element?

    Hi guys!

    A certain page, I have an interactive report of the APEX. Part of the query is similar to:

    SELECT

    ...,

    (definition column1) BCV,

    (definition column2) RFV,

    ...

    table. RAU,

    The TABLE table_name,...

    WHERE conditions;

    I also have a defined through the following LOV page P121_SORT_BY (selection box) element:

    SELECT "BCV" d, "BCV" r FROM DUAL

    UNION ALL

    SELECT "RF value" d, 'RFV r' FROM DUAL

    UNION ALL

    SELECT 'RA (USD)' d, "RAU" r FROM DUAL

    I've linked a dynamic Action to P121_SORT_BY which runs on the 'Change' event and performs the following JavaScript Code:

    var my_column = $v ('P121_SORT_BY');

    Alert ('test1');

    $x('apexir_COLUMN_NAME').value = my_column;

    Alert ('test2');

    gReport.column.order ('DESC');

    Alert ('test3');

    Alert (my_column);


    Obiously, there is something wrong with my code JS... What can I do to make my report interactive sort DESCENDING column selected in my page element?

    Please note that I also tested the JS without comments and I get pop ups (test1, test2, test3 and the correct name of the column of my_column) but the report isn't back to normal... What am I doing wrong?

    Thank you

    Digital

    Hi all

    I found the answer to my question by navigating through the java scripts in Apex.

    So, this is what works:

    gReport.last_col_id = "BCV";

    gReport.column.order ('DESC');

    Where "BCV" is actually your name of column position, you can send it by a Page Item and means of descending "DESC" and "CSA" means growing.

    I hope this helps other people too.

    Thank you

    Digital

  • HOW TO ADD HYPERLINK IN THE INTERACTIVE IN APEX 5 REPORT COLUMN?

    Hello

    I'm new apex.i oracle uses apex 5.

    I want to do a column in my report to a hyperlink.

    When I put the following SQL query there are no errors, but in the report, it shows that a text.it is not rendered as a hyperlink.

    Select

    BL_BUG. BUG_TITLE as BUG_TITLE,

    "BUG_ID" BUSINESS SUCKS SO "

    " ELSE ' < a href =" http://LCS.corpnet.ifsworld.com/login/secured/buglnw/BlBug.page? & BUG_ID = ' | BUG_ID | "' target = '_blank' > ' |" BUG_ID | "< /a > ' END like BUG_ID,

    BL_BUG. DESCRIPTION as DESCRIPTION,

    CASE WHEN BL_BUG. CASE_ID = 0

    THEN NULL

    OF OTHER BL_BUG. CASE_ID

    END as case_id,

    BL_BUG. BUG_SOURCE_REFERENCE as BUG_SOURCE_REFERENCE,

    BL_BUG. MODIFIED_BY as MODIFIED_BY,

    BL_BUG. Date_modified as DATE_MODIFIED

    BL_BUG. CREATED_BY as CREATED_BY,

    BL_BUG. Date_created as DATE_CREATED,

    BL_BUG. BUG_CATEGORY as BUG_CATEGORY,

    BL_BUG. BUG_IMPACT_DESC as BUG_IMPACT_DESC,

    BL_BUG. BUG_SOURCE as BUG_SOURCE,

    BL_BUG. TASK_ID as TASK_ID,

    BL_BUG. ORIGINATING_SOLUTION_ID as ORIGINATING_SOLUTION_ID

    AT THE BEGINNING OF THE BL_BUG WITH BUG_ID =: P405_NEW CONNECT PRIOR BUG_ID = BUG_SOURCE_REFERENCE ORDER BY BUG_ID, BUG_SOURCE_REFERENCE

    bl_bug is my table.can someone tell me why is that?

    Thanks in advance!

    Hi geslin,.

    Garza says:

    I'm new apex.i oracle uses apex 5.

    I want to do a column in my report to a hyperlink.

    When I put the following SQL query there are no errors, but in the report, it shows that a text.it is not rendered as a hyperlink.

    bl_bug is my table.can someone tell me why is that?

    Yes. As narrated by Sunil, you must change the property view as of column DESCRIPTION Standard report column if you use the component view. If you use Page Designer view, and then set the column of Type plain text and No special escape characters .

    If you use followed by "Designer's Page" the following suggestions:

    Kind regards

    Kiran

  • APEX item view side by side... need to remove white space

    Hello

    Here's the scenario:

    -J' have a radio (a region Reg_A tag) group and a report (1 column display)...

    -The Reg_A and a report using view Point: Page (3) template body

    -J' attributed to Reg_A in column 1 column 2


    challenge is that there is a large white space from the elements... which I think is normal behavior of APEX... When I reduce my browser, the items are closer to each other...

    is there a way to Reg_A and report close together, even when the browser is wide open...

    Thanks in advance

    can you please provide more details on how to implement the last suggestion... using a static region ID

    What theme are you using, and what models of the region are used for the Reg_A region and the region of report?

    (The best approach for nothing like this involving layout and visual warnings is to reproduce the situation on apex.oracle.com: it's easier if we can actually see what you're talking about...)

  • Elimination of the white spaces between areas of report

    Hello

    I'm struggling with the design of my application...

    On my page (topic 12) I have 3 regions report side by side, in column 1, 2 and 3.
    Between these regions report, Apex puts a lot of white space that I want to eliminate, but I can't.
    I tried with models from different regions (reports, width 100% region region) and I tried with firebug to see what HTML object to manipulate.

    In the HTML page header, I put:

    < STYLE TYPE = "text/css" >
    <!--
    TD.t12ContentBody {width:auto ;}
    ->
    < / STYLE >

    So far, nothing seems to work. Does anyone have an idea?
    Application design gurus welcome...

    For a better understanding, I put my application on apex.oracle.com:
    Workspace: app
    Login: [email protected]
    PW: riponi

    Thank you for any input,

    Roger

    Hi Roger,

    I've adjusted the template of your PAGE - the region was in a cell that had a width specified 100%. It was originally the three reports to be distributed across the screen. Obviously, as this is only for testing purposes, this setting should be ok - but in real life, you create a copy of the page template, set it and use if necessary.

    Andy

  • How can I create an interactive database report using internal functions of APEX?

    Hello

    We are currently migrating our client applications of APEX 4.2 to 5 APEX. One of these APEX applications using Excel to create a page of interactive report. This means that the user can select a view, materialized in the Excel plugin as a source and he or she can select columns. After you save the changes, a stored procedure uses wwv_flow_api.create_page (...), wwv_flow_api.create_worksheet (...), wwv_flow_api.create_worksheet_rpt (...) to create a new page in the Apex with the sql query generated. To synchronize report columns, wwv_flow_worksheet_standard.synch_report_columns has been used so far (4 Apex). Apex 5 call Wwv_flow_worksheet_standard.synch_report_columns will return "Internal error ORA - 20987 APEX".

    We can create a new page in the Apex with an interactive report, but the report columns are not created. If I edit this page in the application builder and add a dummy column to the query of source of interactive report, all columns will be created. Therefore, there is a solution to create and display columns of APEX 5 report, which must be done by synch_report_columns.

    I know that it is not recommended to use not documented, apex-internal functions and procedures, but we have currently no time to implement another solution. It would be great if we could use the built-in apex to create an interactive report from a given sql query.

    Does anyone have any experience with creating a page from base to APEX 5 apex? Or is anyone know how we can sync/update the columns of an interactive report without manually adding a dummy column?

    In which case it is important: we use a database of Oracle 12 c and our theme is not universal theme.

    Thanks for your help,

    Elizabeth

    Hi Elizabeth,.

    Take a look at apex_app_builder.create_ir_page which is used by the packed app 'Data Reporter'. This type of support and also simplifies the creation of a page of the IR from the line level API set that you used before. For details have a look at the procedure of add_report_page of the EBA_DP package which is installed by the app package.

    Concerning

    Patrick

  • When I try to change the interactive report columns, then triggers the error: "unable to change column attributes. "ORA-01403: no data found. Pls tell me why?

    When I try to change the interactive report columns, then triggers the error: "unable to change column attributes. "ORA-01403: no data found. Pls tell me why?

    You use listener EA3 ADR?

  • How to remove white space of table column

    Hi all

    I am trying to remove white space for column of a table and using ltrim(), rtrim(), the replace() function to.

    but it does not work and the problem remains the same me gives error invalid number as he attempted a conversion on the values of column.

    So please suggest me if he has other ways to remove white space of the column.

    Thank you!

    Perhaps his other traits. Try this

    length (regexp_replace (data_0003, "[^ [: digit :]]"))]] "))

  • How to remove the white space between two response reports

    How to remove the white space between two response reports

    In the section of dashboard, I have 2 rqeuest. Each query returns Table view. When I view the dashboard, it shows a blank separating 2 table views. How can I get rid of the band of white/white space?

    See this link

    Re: Remove the space between the two reports on the dashboard page OBIEE Section

    Kind regards
    Sandeep

  • How to remove the link to the interactive report columns!

    Hi all

    I'm building an interactive report based on pl/sql block.

    In the report, I get the columnnames with link (underlined). I'm confuse when I have the chance to see the names of columns like AGE_SEX, AGE_SEX_

    When I see these columns of interactive report, it seems to be as same as the underline covers underscore.

    Is their anyway I can remove the link to the interactive report columns.


    I selected the link column exclude from the column heading in the report but still attack link gets the link in the column.

    Appreciate your help.

    Thank you/kumar

    Published by: kumar73 on May 5, 2010 14:32

    Hello

    Try the place for HTML page header

    
    

    Hope that I did not understand what you are trying

    BR, Jari

Maybe you are looking for

  • z840: Z840 - 40 minutes to start Windows 10?

    New with Win 10 installed on the internal drive.  The system is sitting with the logo of hp led the drive or just on the screen for 40 minutes more, rest, disabled keyboard (cap / NumLock does not change the keyboard lock lights) before windows "whir

  • Microsoft account

    to all those who can help! the problem I have is that my microsoft account is connected to another Skype user. Is it possible to disconnect my microsoft account of this user? I'd be more than happy to give more details if necessary to anyone willing

  • Cannot access the Bios Uefi more on E535

    Hello community, I recently bought a new laptop E535, works like a charm so far. Access BIOS was possible by pressing enter directly after machine, that came a kind of JOB analysis which could be ignored by pressing any key and that came a kind of ta

  • No network connection to the weather widget

    I have the Z5 don't compact 2 days ago, the waether widget collapsed it give me no netwok connection. Is there a solution for this?

  • Can I share native files (.) IA) cc only or CS6?

    Can I use Draw on the go on my iPad and then forward the native. File HAVE on my desk for further work? Our organization uses CS6 because we cannot upgrade to CC.