Interactive Reports Title Bar

Using Application Express 3.1.0.00.32
I have been searching for a way to change the color of the title bar for the interactive reports. The only thing I have been able to find is a description on how to change the background color of the body. Please advise if there is a way, thanks.

Try copying/pasting the above into the same setting and check that it does, indeed, turn the background red.Andy
Don't know if this is relevant to any problem the OP may have been having, but it doesn't in the versions of Webkit powering Safari 3.1 and Google Chrome (although it does in the latest Webkit nightly build). Appears they don't like url(), but background-image: none; [works for them|http://apex.oracle.com/pls/otn/f?p=34839:6] (and everything else I tested).
this is a convention rather than a requirementThis is not simply a convention. It is part of the HTML specification, as seen when the following document is submitted to the [W3C Validator|http://validator.w3.org]:
<!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" xml:lang="en" lang="en">
<head>
  <title>STYLE element placement</title>
</head>
<body>
  <style type="text/css">
    p {color: red;}
  </style>
  <p>Lorem ipsum dolor sit amet.</p>
</body>
</html>Which produces:
>
Error Line 8, Column 24: document type does not allow element "STYLE" here.
<style type="text/css">
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).>
css styling is available wherever it appears on the pageHats off to the browser makers for making &lt;style&gt; work where they don't have to, but I won't be relying on this.

Similar Messages

  • Placing date field inline to an Interactive Report search bar

    For a button I can choose "Right of Interactive Report Search Bar" option to place it inline with the IR Search bar.
    However I need to place a text fileld or select list or Date Field intead.
    Any ideas? If a template needs to be changed could you please indicate which template? I affrid the date field does not allow an option to change its templates.....
    I hope somebody would be able to help.
    Thanks in advance
    Ligon Gopinathan

    Hi,
    It will take some trial and error to get the positioning correct, but you can do the following:
    1 - Create an HTML region that is positioned at the bottom of your page (that is, make sure that it is underneath all other regions). Set the region's Title to &amp;nbsp; and the Template to "No Template"
    2 - On your datepicker, in the Label/HTML Table Cell Attributes setting, add in:
    nowrap="nowrap" id="P1_DATE_LABEL"(replacing P1_DATE with the actual name of the item).
    3 - In the region's Region Source, add in:
    <style type="text/css">
    #P1_DATE_LABEL {position:absolute; top:40px; left:450px;}
    #P1_DATE_fieldset {position:absolute; top:40px; left:500px;}
    </style>P1_DATE_LABEL is the ID you set above and P1_DATE_fieldset is the ID of the fieldset created for the datepicker by Apex. Change the top and left settings for both as required for your page.
    This outputs the datepicker in your region and then moves it to the top/left position you specify.
    Andy

  • Is there a way to label icons in Interactive report search bar

    Is there a way to label icons, 'View Report' and 'View Chart' icons (the ones next to the go button) in the Interactive report search bar..
    We are developing a report for users to pull metrics. We have put in report view and chart view. But the use of the icons cannot be recognized quickly by the users, unless educated. Is there a way to label them with some text. Or is there any other way to improve this.

    >
    Please update your forum profile with a real handle instead of "878815".
    Is there a way to label icons, 'View Report' and 'View Chart' icons (the ones next to the go button) in the Interactive report search bar..
    We are developing a report for users to pull metrics. We have put in report view and chart view. But the use of the icons cannot be recognized quickly by the users, unless educated. Is there a way to label them with some text. Or is there any other way to improve this.They are actually already labelled&mdash;look at the page source&mdash;presumably for accessibility reasons. CSS styling is applied to move the label text to a position where it is invisible when viewed on screen. All that's required to show the labels is to override/customize the CSS so that the label text is visible and the buttons are sized to accommodate it.

  • Interactive Report Search bar is not working

    Hello all,
    I'm working on a Report. I has two regions, one is for select list criteria and Other is sql query.
    To remove the No data forund. I added REQUEST = 'GO' for sql region.
    When i run the report, selecting all my criterias and click search i get the interactive report.But the tool is not working. If i remove the REQUEST = 'GO' it's working.
    Can anybody please help me.
    Thanks,
    Keerti

    Keerti,
    You're using the "Display Condition" of the Interactive Report Region (IRR) to show the report or not.
    If you have multiple selects just use a PL/SQL expression as in:
    :P1_MULTI_1 IS NOT NULL
       AND :P1_MULTI_2 IS NOT NULLNow, if that works for you lets take things a little further... You don't need the second submit button all the time (I'd get rid of it entirely but you seem to really want to hide the region until a selection is made). I did the following:
    1. Updated the display condition of the report to use a PL/SQL expression.
    2. Set the display condition of the submit button to the opposite of the IRR.
    3. Added the item name of the select to the interactive report attributes > Advanced Attributes > Page Items to Submit.
    Now the go button can be used for everything.
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen
    http://sourceforge.net/projects/plrecur
    Edited by: Dan McGhan on May 14, 2009 12:28 PM
    Updated as only clicking "go" works with Page Items to Submit.

  • Wildcards in Interactive Report Search Bar

    Here's a question I haven't seen anywhere else. It's a long shot, but I'm going to ask anyway. We are using APEX 4.1.0.00.32. The IR Search bar uses a search where no wildcards are needed. In fact, if you do include a wildcard in the middle of the search string, for example ABC%GHI, it is not understood as a wildcard. So far we are telling the users to search once using ABC and search again using GHI when using the IR search bar. They are not completely happy with this.
    Is there a setting to change this? Is there such a setting coming up in a new APEX version?
    Thanks,
    Jackie

    Hello Jackie,
    End Users can search using wild card characters as follows..
    IR -> Actions -> Filters -> Select operator as LIKE
    And in Expression, you can use wild cards like ABC%GHI. (Similar to Oracle SQL LIKE)
    Regards,
    Hari

  • How add Select list in Interactive report search bar

    Hi , I am using Oracle Apex 4.2 and theme 25.
    I want to add select list in IR search bar. I am able to add buttons but i am unable to add items..
    Please guide me to achieve that ..
    Thank You,
    Nihar Narla

    Hi,
    There is no specify property called "Button Position " for page items. This is applicable for BUTTON only inside the Search bar.
    There is a property in IR region -"Item Display Position" for page items to display but only 2 options [Above/below]
    Thanks,
    --Loga                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Interactive Reports - Add Item/Button to the right of the Search Bar.

    Is there any way to put a button to the right of the Search Bar on an Interactive Report?
    Thanks,
    Dave

    Hi,
    Yes, if your button is not among region items.
    Go edit button and change Button Position to "Right of interactive report search bar" from select list
    Br, Jari

  • Interactive report column filters to display differently than column values

    Greetings...
    We use images a lot in our interactive reports to provide a visual representation to a status, or something locked for update, or what-have-you. By default, when a user clicks the column heading of a column which contains images, the drop-down list that shows up displays the actual images, which is nice for the user to identify exactly which thing they want to filter on. The problem is when the user selects on of the options in the filtering drop-down, the resulting condition that is displayed under the interactive report search bar is the HTML code of the image. I'd like something else to display there because showing the user the HTML code is atrocious.
    I didn't think what I want is possible, but then I came across the Page Locks page within ApEx (page 4000:291 in ApEx 4.0.1) which displays a list of all the pages of an application and whether they are locked or not. It also allows you to bulk lock or bulk unlock a bunch of pages. That page uses an interactive report with a column called "Status" which contains images that represent whether the page is locked or not. When you click the "Status" column heading to filter, instead of seeing the images of an open and closed lock, you see the words "Page Locked" and "Page Unlocked." And even better... when you select on of them, the condition that is displayed to the user is very user-friendly.
    Can someone tell me how this is done so I can replicate it in my own apps?
    Shane.

    Why not create the IR using the text you require e.g. 'Lock', 'Unlock' and then use JQuery to replace the text in the report with the image you want. All the filters should then show the plain text and the report will display the image. e.g.
    http://apex.oracle.com/pls/apex/f?p=46801:1
    Here's what I did:
    Firstly make sure the IR has a region template.
    Then create a Dynamic Action with the following attributes:
    1. Advanced
    2. Event: After Refresh
    3. Selection Type: Region
    4. Region: [select the IR Region]
    5. Action: Execute JS Code
    6. Fire on page load: [checked]
    7. Code:
    $('td [headers="TEST"]').each(function(index) {
      if ($(this).text() == 'Lock') {
        $(this).empty().html('<img src="/i/htmldb/icons/locked_small.gif" alt="Lock" />');
      else {
        $(this).empty().html('<img src="/i/htmldb/icons/unlocked_small.gif" alt="Unlock" />');
    });Where TEST is the column name.
    That's it, this may also be of interest:
    http://simonhunt.blogspot.com/2011/10/adjusting-interactive-report-column.html
    I hope it helps
    Shunt

  • JavaScript error on Interactive Report

    When clicking on the Magnifying glass of my interactive report search bar, I receive a JavaScript error.
    Line: 2 Char: 15193 Error: Syntax Error
    The page that I am navigating to has 2 regions. The first is an interactive report and the second is an html region that has an Iframe reference to another interactive report. Based upon the selection of a radio group, the corresponding region(interactive report) displays. All other interactive reports work fine when their pages don't have a region with a Iframe reference.
    If I navigate to another page after the error occurs and then come back to the page, everything then works fine. The error only happens on the first use. I have installed the latest patch set for Apex 3.2 I currently am running 3.2.1.00.11. I read a bug on Metalink that referenced this javascript error, but applying the patch set does not seem to fix the issue. The bug was 8568894.
    Any help would be appreciated.

    This might be useful for others also...
    After hours and hours of debugging headers and responses and comparing pages to others which work, I realised that this interactive report's display condition is based on REQUEST = SUBMIT.
    As such, the actions menu will NOT set the Request parameter when clicking in the actions menu and the Apex engine refuses to send anything back to the browser - not even an error message.
    I'll raise a bug for this via Oracle Support.
    Cheers, Pete

  • Placing buttons in a region displaying an Interactive Report

    Hi,
    I have a page on which I am displaying an interactive report.I would like to place buttons on this region where the report is displayed-
    - The first button right of the search bar of the interactive report
    - The second button right of the first button.
    - The third (exactly ) below the second button (still right of the search bar)
    I am aware that if this where an HTML region,then I would have had the flexibility to place the third button in a new line without a problem,but can I achieve this in a region displaying an interactive report?
    Is there any way to do this?
    Regards,
    Priya Jetley

    Create the buttons as region buttons in the IR region, with the following properties:
    Button Position: Right of Interactive Report Search Bar
    Button Alignment: Left Right
    Enter *style="display: block; float: right;"* in the Button Attributes of the third button.
    Edited by: fac586 on Nov 11, 2008 8:04 AM
    Changed to fix slight layout glitch in Firefox 2.
    Edited by: fac586 on Nov 11, 2008 9:06 AM
    Changed back as the slight glitch in FF2 is preferable to not working in FF3 and Safari

  • Interactive report search region new buttons problem (theme 25)

    Hello!
    When I add new buttons in position "Interactive report search bar" I have a problem like this: [http://files.mail.ru/1AFHY6?t=1|http://files.mail.ru/1AFHY6?t=1]
    On different dimensions and also on iPad2 the situation is bad.
    How can I fix it?
    Apex 4.2 - theme 25 (also 24 and 26)

    any ideas?
    Edited by: ElectroD on Nov 27, 2012 7:56 AM

  • Interactive report error when filter

    Hi,
    I'm new to Apex and get the following error when I create an interactive report:
    "Invalid set of rows requested, the source data of the report has been modified.
    reset pagination"
    This error occurs when I scroll through the pages of the report and get to say the third page of data. I then apply a filter to restrict the data returned to less than a page worth of data, click "Go" and get the error.
    I've searched the forum and understand that this is occurring as Apex is still trying to display 3 pages of data when there is only one page worth of data and I know that I somehow need to reset the pagination, but I cannot find a way to do this. I have tried creating a process to reset the pagination, but this does not seem to fire when the "Go" button is clicked on the interactive report search bar.
    I have tried to reproduce this in my online Apex workspace, but it works fine there. I think this is probably down to using version 4.0 online, but my company is still on version 3.1.0.00.32.
    Is this a bug in the version of Apex that I'm using or is there a way that I can reset the pagination on an interactive report (when the "go" button is clicked)?
    thanks
    Adrian

    The best thing is to run the page with debug and see if the reset pagination is firing or not. Its been a long time since I used 3.1.x but I think reset pagination 3.1 works.
    Maybe something to do with the condition on the reset pagination that prevents it from running? Make reset pagination 'unconditional' and see the result.
    Regards,

  • Interactive Report Pagination and count

    Hello,
    I have two situations I am hoping someone could help me with.
    Problem 1
    I am using interactive reports in APEX 3.2.1 and I have reports with rows >= 6000. currently pagination on reports is set to:
    X to Y of Z
    such that when the report is rendered it looks something like 1 - 15 of 6203 >.
    Is it possible to add 'objects' or 'buttons' that allow me to navigate directly to the last row or/first row e.g
    |<< < 1 - 15 of 6203 > >>|
    such that |<< or >>| navigates to the very end row while < or > navigates to the next set or rows? would this be javascript? if so, does anyone have code for it? unfortunately not only am I new to APEX, I am a novice at javascript as well.
    Problem 2
    Is it possible to have APEX interactive reports return a distinct count on fields that are not unique? All counts are equating to the count of the unique ID and has had me pulling my hair
    Any help is most welcome,
    Mufudzi

    Hi Mike,
    I have not managed to get 'Distinct count' to work. Unfortunately, the project I am working on for this neither has the time or budget to investigate further but hopefully I will be able to get a solution from someone as a "nice-to-know".
    Regarding the first problem I posted on, managed to come up with a solution using some html. Basically I created two html scripts (one above the report and the other below the pagination buttons at the bottom of the report)
    - for the top of report html I used the following code:
    +<td nowrap class="t13RegionBody"><>a href="#endofpage"<>End of Page</a></td>+
    +<td bgcolor="#EEEEEE" nowrap><a name="topofpage"><font color="#EEEEEE">Top of Page</font></a></td>+
    and called the script topofpage
    - for the bottom of report html script I called it endofpage and used the following code:
    +<td nowrap class="t13RegionBody"><>a href="#topofpage"<>Top of Page</a></td>+
    +<td nowrap bgcolor="#EEEEEE"><A NAME="endofpage"><font color="#EEEEEE">End of Page</font></A></td>+
    What the script does is when the "End of Page" hyperlink is clicked, it takes the user to the bottom of the screen/page and vice versa for the "Top of Page" hyperlink situated at the bottom of the page. Users will be educated on how to use the ROWS utility on the interactive report menu bar so that they can display all available rows on one page and use the links to navigate from top to bottom of page.
    Mufudzi
    Edited by: Mufudzi on Oct 2, 2009 12:20 PM

  • Search bar  value from Interactive Report

    Could someone help me to acces the value entered in the search bar and pass it to another page?
    Basically our apex interactive reports has a link which allows to edit single records. However customer is looking to edit multiple records at the same time and I am thinking if I can pass the search bar value to an tabular form, then it will allow to update multiple records
    Thanks
    Rajesh Alex

    Hi Rajesh,
    There are a set of views that seem to contain the data for the IR:
    APEX_APPLICATION_PAGE_IR
    APEX_APPLICATION_PAGE_IR_CAT
    APEX_APPLICATION_PAGE_IR_CGRPS
    APEX_APPLICATION_PAGE_IR_COL
    APEX_APPLICATION_PAGE_IR_COND
    APEX_APPLICATION_PAGE_IR_RPT
    You could have a look through these to see if any help.
    Andy

  • Displaying title on Interactive Report

    Folks, there should be an easy solution to this, but I can't find it.  I'd like to be able to display a title on my interactive reports.  I'm using the "IRR Region Template," and using another one isn't an option (b/c the other ones don't properly display wide reports).
    I'm guessing the IRR Region Template doesn't include the #TITLE# substitution string, but can it?  Can #TITLE# be added?  Or can I accomplish this simple requirement via some other fashion?
    Thanks
    Rob

    Question:  Where do you want the title to appear on the page? 
    I'm not familar with this IRR Region Template.  Is it borderless or does it have a title "area"?   If it has a title area, it ought to have a #TITLE# substitution string for that area?   You say "I'm guessing ..."   Can you take a look at the template and tell us what's there?   Do you know how to look at the templates? 
    I added a simple title as a display-only page item on a report.  But that's pretty limited as there is only so much display room between the page tabs and the search box.  You could also concatenate an application item to the application title and set it to the report title you want when the page displays.
    Howard

Maybe you are looking for