APEX 4.2.1 Theme 26. Report template "Fixed headers" does not work in IE9

Hi,
The goal is to scroll the region, but not column headers.
Works great on Chrome and Firefox, but on IE9, column headers scroll altogether with data.
I have tried it in APEX workspace at ORACLE (select order_item_id, order_id from demo_order_items - just to fill the region).
Is there a possibility to fix the Template's HTML/CSS?
Of course, I can make three regions to show the same thing (one region with report heading only, another with column headings only and the third on with column data only), but it seems complicated for such a simple task .
Thank you

Hi,
I would suggest to not mix different questions and a thread for each of them. Makes it easier for others to follow.
About your problem with the cascading LOVs, it appears that this is/was a bug in jQuery Mobile which we use under the hood. I was able to reproduce the problem with APEX 4.2.1 using jQM 1.2.0, but was not able to reproduce it with APEX 5.0 which will use jQM 1.3.0RC1 or higher. The problem occurs if a select list is empty.
There are different workarounds available:
1) set the attribute "HTML Form Element Attributes" of P1_CLOV_2 to data-native-menu="false"or
2) set the attribute "Display Null Value" of P1_CLOV_2 to Yes and "Null Display Value" to - select - (or something similar). The "Value Required" = Yes will still guarantee that a value has to be picked. Having the extra null entry will guarantee that the select list always contains an entry, that seems to workaround the bug in jQuery Mobile.
I have filed bug 16355963 - jquery mobile: empty select list causes javascript error
to track that this is definitely fixed in APEX 5.0.
Regards
Patrick
My Blog: http://www.inside-oracle-apex.com
APEX Plug-Ins: http://apex.oracle.com/plugins
Twitter: http://www.twitter.com/patrickwolf

Similar Messages

  • ORDS Template with parameter does not work

    Hello everybody,
    I can not get working a RESTful Service using the ORDS_SERVICES -API (ORDS version 3.0.0.343.07.58), same Query without parameter (hardcoded product_id) works fine.
    declare
    l_module_id number;
    l_template_id number;
    l_handler_id  number;
    l_parameter_id number;
    begin
    ORDS_SERVICES.delete_module(p_name => 'test_parameter');
    l_module_id := ORDS_SERVICES.create_module(p_name => 'test_parameter',
                                p_uri_prefix => '/test_parameter',
                                p_items_per_page => 10,
                                p_status => 'PUBLISHED',
                                p_comments => null);
    l_template_id := ORDS_SERVICES.add_template(p_module_id => l_module_id,
                               p_uri_template => '/demo_product_info_10/',
                               p_priority => 0,
                               p_etag_type => 'HASH',
                               p_etag_query => null,
                               p_comments => null);
    l_handler_id := ORDS_SERVICES.add_handler(p_template_id => l_template_id,
                               p_source_type => 'MEDIA', -- source_type IN ('COLLECTION_FEED', 'COLLECTION_ITEM', 'FEED', 'MEDIA', 'PLSQL', 'QUERY', 'QUERY_1_ROW')
             p_source => 'select mimetype, product_image from demo_product_info where product_id = 2',
             p_format => 'DEFAULT',
             p_method => 'GET',
             p_items_per_page => null,
             p_mimes_allowed => null,
             p_comments => null);
    /* now same result but with parameter */
    l_template_id := ORDS_SERVICES.add_template(p_module_id => l_module_id,
                               p_uri_template => '/demo_product_info/{product_id}',
                               p_priority => 0,
                               p_etag_type => 'HASH',
                               p_etag_query => null,
                               p_comments => null);
    l_handler_id := ORDS_SERVICES.add_handler(p_template_id => l_template_id,
                               p_source_type => 'MEDIA', -- source_type IN ('COLLECTION_FEED', 'COLLECTION_ITEM', 'FEED', 'MEDIA', 'PLSQL', 'QUERY', 'QUERY_1_ROW')
             p_source => 'select mimetype, product_image from demo_product_info where product_id = :product_id',
             p_format => 'DEFAULT',
             p_method => 'GET',
             p_items_per_page => null,
             p_mimes_allowed => null,
             p_comments => null);
    l_parameter_id := ORDS_SERVICES.add_parameter(p_handler_id => l_handler_id,
                               p_name =>  'product_id',
             p_bind_variable_name => 'product_id',
             p_source_type => 'URI',
             p_param_type => 'INT',
             p_access_method => 'IN',
             p_comments => null);
    commit;
    end;
    The first template works fine:
    http://localhost:8080/ords/xxx/test_parameter/demo_product_info_10/
    shows a jpeg image of a wallet.
    The second template does not work:
    http://localhost:8080/ords/xxx/test_parameter/demo_product_info/10/
    fails with error:
    mapped request using: BasePathMapper [basePath=/xxx/] to: SCHEMA:apex|XXX
    Choosing: oracle.dbtools.http.dispatch.DispatchMetaData as current candidate with score: MetaDataScore [score=0, matchedMethod=  GET: {10299, false}
      common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=10, pagination=NONE, requiresPrivilege=null, transport=null]
    , matchedPattern= /test_parameter/demo_product_info/{product_id}
    common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=null, pagination=null, requiresPrivilege=null, transport=null]
    methods:
      GET: {10299, false}
      common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=10, pagination=NONE, requiresPrivilege=null, transport=null]
    stack trace:
    oracle.dbtools.http.errors.InternalServerException: java.lang.IllegalArgumentException: INT
    at oracle.dbtools.http.errors.ErrorPageFilter.internalError(ErrorPageFilter.java:165)
    at oracle.dbtools.http.errors.ErrorPageFilter.doFilter(ErrorPageFilter.java:113)
    at oracle.dbtools.http.filters.HttpFilter.doFilter(HttpFilter.java:44)
    at oracle.dbtools.http.filters.FilterChainImpl.doFilter(FilterChainImpl.java:51)
    at oracle.dbtools.http.cors.CORSFilter.doFilter(CORSFilter.java:35)
    at oracle.dbtools.http.filters.HttpFilter.doFilter(HttpFilter.java:44)
    I changed the add_parameter-call p_param_type => 'INT' to be  p_param_type => 'STRING'
    then error remains the same and strack trace says
    oracle.dbtools.http.errors.InternalServerException: java.lang.IllegalArgumentException: STRING
    at oracle.dbtools.http.errors.ErrorPageFilter.internalError(ErrorPageFilter.java:165)
    at oracle.dbtools.http.errors.ErrorPageFilter.doFilter(ErrorPageFilter.java:113)
    Could you please confirm and fix,
    kind regards,
    Tom

    This is a guess, but I suspect that ords_services.add_parameter() is not required at all.
    Also, your URL /demo_product_info/10/ should not have the trailing slash (according to your template URI).
    For more information, I suggest you look here:
    ords.3.0.0.343.07.58.zip\ords.war\scripts\migrate\core\ords_migrate.plb
    The migration package will show what is usually done for templates that already exist within APEX 4.2. I checked my templates and the ones with URI variables {in-curly-brackets} contain no records in apex_040200.wwv_flow_rt$parameters.
    -Kris

  • Save a published Access services database site as a template with contents does not work

    Hi
    I have a Access site on the SharePoint. I wanted the site to be duplicated to another subsite, I then did the usual - save site as a template with contents and made a copy of it, however it does not work. I have been getting the error as stated below
     error has occurred during report processing. (rsProcessingAborted)
    Query execution failed for dataset 'Default'. (rsErrorExecutingCommand)
    For more information about this error navigate to the report server on the local server machine, or enable remote errors
    However, it works if I make a local copy and publish it to the subsite? How does access services work on SharePoint and why the template option can't be chosen.

    Hi cally, check the following links for possible solutions:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/1e2b77ba-4cfa-4aa3-97e4-b7b39fbd46fd/error-with-ssrs-report-that-has-a-sharepoint-list-data-connection-ssrs-r2-and-sharepoint-2010?forum=sqlreportingservices
    http://blog.mikehacker.net/2012/05/16/sharepoint-2010-access-services-reporting-with-sql-2012/
    cameron rautmann

  • In XL Reporter  the report template ER-1 is not working,

    In XL Reporter  the report template ER-1.ixr given by SAP is not working,
    Error message displayed: "Error in Expansion" how to correct this problem
    please give me the solution or mail me ER 1.ixr if you got working file, thank you
    Regards
    krish
    mail id:[email protected]

    Dear Radhakrishnan,
    This error has already been reported to SAP Support earlier also. It happens with SalesTaxRegister.ixr also and here is the solution for it :
    Whenever the Xlreport "SalesTaxRegister.ixr" is executed from
    XLReporter the error "Error in expansion" appears.
    This error occurs because the report references two fields which do not
    exist in the metadata.
    Note: SalesTaxRegister.ixr is provided by SAP for Indian localisation.
    To correct this problem, follow these steps:
    1.  Open the report definition in Excel.
    2.  Click menu 'Format > Column > Unhide' to unhide all columns. This
        will make columns A to AC visible.
    3.  Delete the content in cells O15 and O25 (PO4_NonDdctPrc).
    4.  Hide columns A to AC again and save the report.
    5.  Try to run the report again.
    The above solution will work for SalesTaxRegister.ixr report.
    For the customized report which the partner must have
    created, there would be some similar references that do not exist
    in the metadata. Once these references are deleted the report will work
    again.
    For further information please have a look at the note :  1072702.
    Regards
    Arshdeep

  • Urgent : SSRS reports zoom in option is not working in IE9 compatability view

    Hi,
    We have SSRS reports which when viewed in IE 9 compatability view, zoom in option is not working properly.
    SSRS report have 4 charts inside a rectangle. when zoom in from 100% to 50% only rectangle shrinkes not the charts.
    Please let me know why it is happening and solutions if any?
    Rakesh Jayaram http://blogs.msdn.com/b/rakesh_ramblings/

    Hi Wendy Fu,
    Thanks for your support. Below are the steps and screenshots as per your requirement.
    /*******************Below are the steps to replicate ************************/
    This document explain IE9 compatibility issue with SSRS report (SSRS 2008 R2 and IE9)
    Tools and software used:
    Reports are rendered on Share Point 2010 server which uses SSRS 2008 R2.
    Reports are accessed using web browser IE9, IE10 ….
    Problem statement:
    To work OTHER reports compatibility mode in IE should be ON
    To work SSRS reports (mainly zoom) compatibility mode in IE should be OFF
    OTHER report is being used by customer and they will start using SSRS reports as well. While using both OTHER reports and SSRS reports customer do not prefer to keep switching between compatibility modes.
    “Browser Mode: IE9”
    Steps to reproduce Zoom issue for SSRS report with Compatibility mode is given below:
    Step-1: Select Tools menu -> Compatibility View Settings
    Below setting is suggested for OTHER users so tick as shown below,
    Step-2: On decision center select link and Open the report home page and click the link to open the report.
    Step-3: On SSRS reports Change Zoom level from 100% to say 50%. Here all charts are not moved with container frame.
    If “Browser Mode: IE8” is set with following steps then this issue does not happen.
    Press F12 and from and select IE8 as shown below.
         Press F12 again so this will set the mode and then try Zoom option it works fine. However this setting temporary and will remain for the session only.
    If compatibility mode is OFF then also this does not happen. Please see image below.
    Rakesh Jayaram http://blogs.msdn.com/b/rakesh_ramblings/

  • Report with JDBC connection does not work when they includes CommandTable

    I am trying to render using the new version of Crystal report java component - CRJ a report contains Data base Fileds of type Command Table (Row Set) which seems to be not working.
    when i use the previes version of crystal SDK it works fine.
    after deugging the Sample CrystalHelper.java file which contains the method .changeDatasource()
    i found that the DataBaseController.setLocation() method changes the CommandTable class to Table when using it on CommandTable instance and as result all the fields defined into that CommandTable were disappear.

    That appears to be a known issue:  Eclipse JRC: To change the JDBC connection at run time
    Sincerely,
    Ted Ueda

  • Crystal report export to MAPI does not work in Windows 7

    I am using CR11 R2 SP4 in Windows 7. I tried to export a report to MAPI and got error:
    Error 2147500037 returned by function <MAPIResolveName>
    Any one see this error before?

    Hi Edmund,
    Once post are closed we don't typically go back and watch them. There are also other post with this same issue.
    Vincente logged a case I just updated him:
    The scheduled release is as follows:
    It's been fixed and set to be released in Fix Pack 2.6 for Cr 2008 and 6.2 for CR XI R2
    Then again for 2008 FP 3.1 and SP 4
    6.1 was just release a few weeks ago so 6.2 should be in 3 or so weeks. All depends on how the QA'ing goes.
    I'll know better when we get closer to the expected release time. 
    For Cr 2008 I'll have to find the scheduled release date.
                                                                                    Thank you                                                                               
    Don

  • Report Generation for Excel does not work after using the Application Builder

    I have a VI that writes data to an Excel file using the Report Generation Toolkit. I recently compiled the VI into a single Application (EXE) using the Application Builder. My VI runs its tests properly, but no data is written to Excel. What could be the cause? I don't receive any error messages.

    Hi
    I usually build exe-files, which sometimes also have report functionality.
    Open the Application Builder and check the following things:
    1. Add the following vis: _Word Dynamic VIs.vi, _Excel Dynamic VIs.vi They should be located in the directory ..\LabVIEW X.X\vi.lib\addons\_office in the llbs _wordsub.llb and _exclsub.llb (report1.jpg)
    2. If you use an Installer, go to the Advanced Settings. There you can select some things to include in the Installer. Check if "NI Reports Support" is selected. (report2.jpg)
    These are the things I always do, if I need reports and I never had problems up to now. I made two screen-shots of these settings.
    Hope this helps.
    Thomas
    Using LV8.0
    Don't be afraid to rate a good answer...
    Attachments:
    report.zip ‏25 KB

  • REPORT A PROBLEM link does not work

    I received an email with an invoice for a purchase of 5 apps that I DID NOT PURCHASE. IT'S ALL IN CHINESE AND I DON'T EVEN KNOW HOW TO READ CHINESE. After following a tutorial on how to report a problem, i clicked on that link 'report a problem' next to the apps the thief purchased BUT IT BOUNCES ME BACK TO THE ITUNES SUPPORT PAGE. Unlike the tutorial, it did not bounce me to the 'select your problem' page. I want to report this problem so that I may get a refund on those apps i did not buy ( and do not even have on my ipod! ). Please help me.

    I can confirm that report a problem sends me nowhere when I click it. Funny how when it comes to reporting that it doesn't work

  • Bug report: entering serial number does not work with azerty keyboard

    I did not find a place to submit bug reports, so I'm posting here.
    During the instalation of Photoshop Elements 8 for Mac, I was not able to enter any numbers in the serial number fields.  Some other keys did work (like &é$...).  My keyboard is an azerty (Belgium).  Notice the numbers on an azerty keyboard have to be entered while holding the shift key.  I tried switching the keyboard to "French - Numerical" (wich enables numbers to be entered with shift lock on), and then some number keys worked, and others didn't.
    I solved this with a workaround, by temporary switching my keyboard to U.S. English.

    You can submit a bug report by clicking "Feature Request/Bug Report" in the upper-right corner:
    http://www.adobe.com/support/photoshopelements/
    Despite what it says, I've seen no hard evidence that Adobe ever pays attention to PSE bug reports.

  • TS3899 I can not send or forward emails from iphone; i can get the emails and open them just can not send them and tried rebooting but it does not work

    I am unable to send or rorward emails that I get on my iphone 4.  Rebooting did not work

    Correct the settings for the email account.  Contact the email provider for assistance.

  • At the top of my Mozilla home page, it lists the current URL site I am on. How do I delete them and the others in the drop down box? Highlighting and hitting delete does not work

    At the top of my Mozilla home page, it lists the current URL site, such as http://www.safeco.com, I am on plus the others in the drop down box. How do I delete them. Highlighting and hitting delete does not work.
    I am using windows Vista 007 and Mozila 3.6.1.3

    Do those entries have a yellow star at the far right?
    If they have then they are bookmarks. You can remove them if you open that link and click the star to open the Edit This Bookmark dialog and click the Remove button in that dialog.
    * [[Clearing Location bar history]]
    * [[Cannot clear Location bar history]]

  • Dynamic image does not work in the template builder plug-in (Apex-BI Intgr)

    Hi all, I posted this problem in the BI Publisher topic but nobody responded maybe this is because mods thought this is an Apex-BI integration issue.
    If I'm in the wrong place, please do warn me.
    The documentation says:
    Direct Insertion
    Insert the jpg, gif, or png image directly in your template.
    ...This works obviously
    URL Reference
    1. Insert a dummy image in your template.
    2. In Microsoft Word's Format Picture dialog box select the Web tab. Enter the following syntax in the Alternative text region to reference the image URL:
    url:{'http://image location'}
    For example, enter: url:{'http://www.oracle.com/images/ora_log.gif'}
    ...This works too when I hardcode an url as url:{'http://www.google.com.tr/images/firefox/mobiledownload.png'}
    Element Reference from XML File
    1. Insert a dummy image in your template.
    2. In Microsoft Word's Format Picture dialog box select the Web tab. Enter the following syntax in the Alternative text region to reference the image URL:
    url:{IMAGE_LOCATION}
    where IMAGE_LOCATION is an element from your XML file that holds the full URL to the image.
    ...This, however, does not work.
    I use Apex' report query tool and My query is like
    select 'http://www.google.com.tr/images/firefox/mobiledownload.png' IMAGE_LOCATION from ... (a single result set for my template)
    the xml data is generated with an IMAGE_LOCATION tag. I load it to word template plug-in. The Url successfully displays in the report if I make it a plain-simple field.
    But when it's in the image format->web->alt text as url:{IMAGE_LOCATION} no image displayed.
    I need to keep this design procedure simple so a simple word user could design a report via using just template builder plug-in. I don't wish to explore the xsl-fo area...yet.
    Could you tell me why I can't get this url:{IMAGE_LOCATION} to work?
    Regards
    PS: My BI version: 10.1.3.4.1

    Hi Oeren,
    your steps seem basically to be correct. I have a tutorial how to do this here (in german)
    http://www.oracle.com/webfolder/technetwork/de/community/apex/tipps/pdf-dyn-images/index.html
    when you see the URL corrently as long as you have it as a plain text field, the XML tag and the
    referencing seem to be OK.
    Here are two thought - the issue might be one of these ...
    How did you insert the dummy image into the word document - did you do it via "insert" or
    via "link to file". "Link to File" does not work - you must choose the simple "insert".
    Another one: Does your BI Server have a connection to the internet - is the proxy server correctly set ..?
    Does this help ..?
    Regards
    -Carsten
    Cloud Computing mit APEX umsetzen. Jetzt!
    http://tinyurl.com/apexcloudde
    SQL und PL/SQL: Tipps, Tricks & Best Practice
    http://sql-plsql-de.blogspot.com

  • Dynamic image in the template builder plug-in does not work

    Hi all,
    The documentation says:
    Direct Insertion
    Insert the jpg, gif, or png image directly in your template.
    +...This works obviously+
    URL Reference
    1. Insert a dummy image in your template.
    2. In Microsoft Word's Format Picture dialog box select the Web tab. Enter the following syntax in the Alternative text region to reference the image URL:
    url:{'http://image location'}
    For example, enter: url:{'http://www.oracle.com/images/ora_log.gif'}
    +...This works too when I hardcode an url as url:{'http://www.google.com.tr/images/firefox/mobiledownload.png'}+
    Element Reference from XML File
    1. Insert a dummy image in your template.
    2. In Microsoft Word's Format Picture dialog box select the Web tab. Enter the following syntax in the Alternative text region to reference the image URL:
    url:{IMAGE_LOCATION}
    where IMAGE_LOCATION is an element from your XML file that holds the full URL to the image.
    +...This, however, does not work.+
    I use Apex' report query tool and My query is like
    select 'http://www.google.com.tr/images/firefox/mobiledownload.png' IMAGE_LOCATION from ... (a single result set for my template)
    the xml data is generated with an IMAGE_LOCATION tag. I load it to word template plug-in. The Url successfully displays in the report if I make it a plain-simple field.
    But when it's in the image format->web->alt text as url:{IMAGE_LOCATION} no image displayed.
    I need to keep this design procedure simple so a simple word user could design a report via using just template builder plug-in. I don't wish to explore the xsl-fo area...yet.
    Could you tell me why I can't get this url:{IMAGE_LOCATION} to work?
    Regards
    PS: My BI version: 10.1.3.4.1
    Edited by: oeren on Jun 8, 2011 12:28 AM

    Oeren,
    I stumbled across this little tidbit buried in the BI Publisher forum: Dynamic Images in rtf
    Glad you are up and running!
    Joshua

  • Insert in Tabular form does not work after the upgrade to APEX 4.0

    Hi all,
    Thx in advance for looking into the issue.
    We are running into following issue when we upgraded APEX 3.2 to APEX 4.02
    1) The Tabular form insert does not work.
    2) We are fatching the value of the Global variable APEX_APPLICATION.g_XXXX in a procedure and we get null for this value after submit for new row to be inserted.
    The tabular form was working fine in APEX 3.2.
    The Update and Delete works just fine.
    Any help in this regard is highly appreciated.
    Thx and regards,
    Mahesh

    Here is my workaround to get the ADDROW/SUBMIT working again if you have a legacy Tabular Form:
    1     PAGE ATTRIBUTES               
              JAVASCRIPT          
              FUNCTION AND GLOBAL VARIABLE DECLARATION          
                   var htmldb_delete_message='"DELETE_CONFIRM_MSG"';     
    2     DELETE BUTTON               
              ACTION WHEN BUTTON CLICKED          
              URL Target          change to
                   javascript:apex.confirm(htmldb_delete_message,'MULTI_ROW_DELETE');     
    3     ADDROW BUTTON               
              ACTION WHEN BUTTON CLICKED          
              Action           
                   redirect to URL     
              URL Target          
                   javascript:addRow();     
    4     PROCESS               
              APPLYMRU (activitated by button ADDROW)          
              CONDITION          
                   never or delete     
    5     PROCESS               
              ADDROWS          
              CONDITION          
                   never or delete     
    6     CHANGE PAGE TEMPLATE to e.g. THEME 13 One Level Tabs.               
    7     IF YOU WANT ADD FUNCTIONALITY TO GOTO BOTTOM OF PAGE AFTER ADDROW               
         1. In the page footer put <a name="bottom_of_page"></a>                
         2. Amend the action when the "ADD" button is clicked to scroll down to the new region by doing the following:               
         - edit "ADD" button               
         - Go to "Action when button Clicked" section               
         - Amend "URL Target" from               
         javascript:addRow();                
         to               
         javascript:addRow();window.location='#bottom_of_page' ;               
    regards
    PaulP

Maybe you are looking for

  • My hard drive on my macbook pro crashed, can I get my music back on it from my iPhone?

    when my hard drive crashed, I lost everything off my macbook.  is there a way to import my music back on my computer from my iphone?

  • How to get the text of several cells in one? (Operator "&")

    Hi there, I have a list of done and planned tasks. In the one column, there is the description, in the other is the status like "plan" "open" and "closed". Now I want to create an overview.How can I filter the "open" tasks and display them in one cel

  • How to access complex data type objects in webdynpro

    Hi Need help on the detailed procedure to access the complex data type objects. I am importing an external wsdl file, its request and response have complex data type objects , how do i access the same as the values are nested in them. The structure o

  • Ref Cursors  in 10g

    Hi, I have a problem. A PL/SQL code was running fine in 9i as per the required output(dbmsoutput) ,is not working in 10g. The following is the PART OF THE CODE. In 9i database the output reaches till 'TEST5' but not in 10gdatabase,where it reaches ti

  • Can I upload the chinese edition books on iBooks?

    I want to upload the chinese edition books on iBooks. Does apple support the chinese edition books on iBooks? If they do, How can I upload my books? Just follow the process as regular english version or Is there any special process to upload it ? Tha