Cancel breaks report interactive dialogues

Hi all

One of my clients has pointed out an annoying problem.

They run APEX 5.0.1 Question has been tested with the sample database application but also occurs in other applications.

It only seems to happen with Internet Explorer 11. It is the master browser for its end-users is very painful.


I begin with the interactive report on DEMO_CUSTOMERS. "Create customer" button opens a modal dialog box with the page of the form.

When I Cancel this dialog, I don't seem to be able to use the search bar of the interactive report more.

Reload the entire page or refresh the report solves the problem. Therefore, the problem does not come after the update of a row.


Anyone else having this problem?

Is it a bug in APEX or IE11 did something wrong here?


Thank you very much for your comments!


Kind regards

Bart

The problem is due to IE handles JavaScript that runs in an iframe as the iframe is destroyed.

The cause is responsible for other reports such as

APEX dialogue 5 causes close script error in Internet Explorer, reproduced in the Demo Application

I forgot where, but there are reports related to not be able to fields of development within the customer dialog after having already cancelled it.

Modal dialog APEX pages how we work in the home page there is a dialog jQuery UI with an inside iframe which loads the page apex. [Each main window and iframe has their own JavaScript context completely separate with its own window, builtin objects object: Array and Object etc..]  When the dialog box is closed the iframe is destroyed. For some reason, IE JavaScript allows to continue to operate within the iframe window but has removed all objects incorporated such as Object, Math, array etc. This can manifest in various ways. It can be difficult to reproduce the problem in all its forms. It is very dependent on synchronization. It may depend on the exact versions of IE and OS. I tested it with versions of update IE11.0.9600.18124CO 11.0.26 on Windows 7. In some cases, it may depend on if the developer toolbar is open and just at the moment you press the Cancel button. It may depend on if you press the (X) button in the header or the Cancel button. For some it is very reproducible and others not at all.

The most reliable way, I could see that the problem described above referenced forum thread.

In THE 11 press F12 to open the tools of development and in the sample database application, customers page. Click on a customer. Then click on apply changes.

Note that you hit a break of exception with error object expected.

I have try several times before I can get "not able to use the search bar" problem occurs. I think it helps if I focus first a field in the dialog box before pressing the Cancel button. It is easier to reproduce when the developer tools is not open, but I was also able to get it to happen with open development tools and there is an exception for JavaScript having to do with Math.random being missing or other related errors.

It took a while to track down what was the cause, but once I knew what to look for, a search on the Internet has a solution to this problem of IE similar reports on old versions of IE. Seems that if you set the iframe src attribute initially on "" before destroying the iframe, these problems do not occur. Seems to do a better job of cleaning up the JavaScript framework.

This will be hopefully get fixed for 5.1. In the meantime, you can try the following:

On any page that contains a dialog modal page APEX on this who knows this problem to put JavaScript code following in the execution of the page when the Page loads of attributes:

$("body").on("dialogclose", ".ui-dialog--apex", function() {
   $(this).find("iframe").attr("src", "");
});

This is the page apex dialogues and when they close will be firstly set the iframe to empty string src attribute. Let us know if it works or not.

Tags: Database

Similar Questions

  • detection of interactive dialogue: C:\Windows\TEMP\nsb49DD.tmp\vcredst_x86.exe.

    I have Vista.  I'm a detection of interactive dialogue: C:\Windows\TEMP\nsb49DD.tmp\vcredst_x86.exe. I wonder if someone can tell me what to do about it.  "Show me the message" goes to a blue screen.

    Thank you

    Hello

    Restart the computer and start typing the F8 key to display the logo of the manufacturer

    Select Mode safe mode with networking

    Download the following tool and run a scan complete to rule out malware

    http://www.Microsoft.com/security/scanner/en-us/default.aspx

    When you are done, reboot and let windows load.

    Run the System File Checker that will search the missing or corrupt files.

    Start > type CMD

    Right click on CMD and select run as administrator

    Type sfc/scannow

    Press enter

    Note: There is a space between sfc and / scannow

    Use the System File Checker tool to repair missing or corrupted system files

    http://support.Microsoft.com/kb/929833?WA=wsignin1.0

    If the SFC finds irreparable errors, you may need to perform a full restore of Windows Vista

  • Detection of interactive dialogue display...

    How doI get rid of this box "Detection of interactive dialogue"? He always appears. All I can do is to remove it. He mentions that it is a program that may not appear on my screen. When Im on a Web page, it just shows upward. I have Norton and have tried scanning something and maybe get rid of it.

    What program or Service that causes this message.  If you know that you could go into Services and check that the box is not checked (under Log On) "allow Service to interact with Desktop".

    Right-click on the icon of my computer / manage / Services.  Right click on the Service / properties / Log On, you will get to the area I'm talking about.

  • How to convert sql report interactive report

    Hi all

    I have a Sql report and I want to convert in interactive report. I found the option at the top to the right side "Interactive report migrate" but only 3 option to pass parameters.

    In my SQL report (Edit button) is here and I'm passing 6 values through this button change, how can I migrate my SQL report interactive report? Please suggest me...

    Thank you

    Xandot wrote:

    In the report links SQL query looks like:

    1. case Type
    2. When 3 then
    3. (select the T_STYLE Style where STYLEID =?)
    4. When 1 then
    5. 'Edit'.
    6. else '||','|| ||','|| ||','|| ||',30>Edit'
    7. end
    8. When 2 then '| «, » || ||','|| ||','|| ||',30>Edit'
    9. When 1 then '| «, » || ||','|| ||','|| ||',30>Edit'
    10. end as change

    How to implement above interactive links, until now that I created the link on interactive using links like report:

    But here its me allow only a single URL, how to put different URLS of in accordance with the condition, please suggest me.

    There is no declarative support for generating links conditionally to line level in interactive reports (or indeed in the standard reports). Set the IR link column property to exclude the link columnand generate the link in the request in the original report. Set the Type of display attribute for the column Edit to report Standard column.

  • 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 make the search bar of the report interactive, aligned to the right?

    Hi all
    I need to make the search report interactive to be on the right side bar. How can I do this? any idea?
    Please note that I use the Oracle XE11.2 database

    Best regards...
    Hussam.

    Hossam,
    If you use apex 4.2... change your page in the css section, place the code in the Inline text box.

  • The BLOB (image) column in the report (interactive)

    Hello

    I have a field called "image" in my "details" table, which is of type BLOB. I also have a field 'MIME Type' and 'filename '.

    In addition, I have a "name" and "description" column I need to display with the image in the form of columns in a report (interactive preference).

    I also modified the display BLOB format as per

    http://www.Oracle.com/WebFolder/technetwork/tutorials/OBE/DB/Apex/R31/apex31nf/apex31blob.htm

    what Miss me is the correct query. If possible, I want to control the size of the rendered image in the report as saying 40 * 50.

    I also mentioned the thread

    APEX 3.1 BLOB Image display

    But I do not know how to place the

    DBMS_LOB. GetLength ("BLOB_CONTENT") as "BLOB_CONTENT".

    in my query.

    The foregoing allows also the report type column 'number Should it?

    Any help would be appreciated.

    Kind regards
    Rigaut

    so I am very confused if the error is in the report or the table/data type definition itself.

    Or {noformat}) {noformat}

    The problem is in the settings of the P4_PICTURE element in the form on page 4. The Type of storage has been upgraded with WWV_FLOW_FILES of the Table, so the uploaded images were going to the repository of integrated files, not the BLOB on your CATEGORY table column. So the fundamental problem is that there are no images in your table to be included in the report.

    I changed the element P4_PICTURE Type of storage to a BLOB column specified in the attribute of the Source element, has added the additional column information and the IMAGESource and changed column PHOTO report 3 Format page mask download image, and the picture I have uploaded via the updated form the appears.

  • Export report interactive report link

    I understand it, normally, export reports to. CSV files & takes the name of the report area.

    I can't see where, in the section of report export - attributes report - interactive report, you can specify a fixed name for the report.

    MY QUESTION:



    Since my report of Nomenclature is based on a reference variable, can get to the variable becomes the name of my export.

    Example I run a query for a 1234 p/n, my report is then available for download as 1234_BOM.csv

    Thank you
    Bob

    Hello

    What is your version of the Apex.
    When you set the name of the application, include not .csv to the name.
    And use the format

    &P1_SEARCH.
    

    Kind regards
    Jari

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

  • Subscription report interactive to send unwanted empty reports

    We went to APEX APEX 4.2.6 5.0.1.00.06

    Since the upgrade, a user has received emails every 25 minutes saying:

    You receive this email from subscription interactive report created by MAS.
    If you no longer want to receive emails, please click on
    unsubscribe to manage your subscription.

    The attached report is null (empty). By clicking on the link churn returns a page of "invalid request".

    The user had a subscription for report for a report to 4.2, we removed this subscription but still the user always gets the message.

    I can't know what workspace that generates demand so that I can remove it.

    Help? How will I know where the subscription is that we can stop SPAM?

    Thanks in advance.

    We finally found the problem. In the scheme of APEX_040200, the WWV_FLOW_WORKSHEET_NOTIFY still had a record inside for the subscription, even if we had upgraded to 5.0 APEX.

    When I deleted this record, white reports has stopped as well.

  • Report interactive color display, but no data

    Apex 5

    Theme: universal

    I have an interactive report

    select 
    b.project_number,
    b.name project_name,
    b.description,
    b.start_date,
    b.end_date,
    a.ID, 
    a.STATUS_DATE,
    a.TIME_STATUS,
    a.COST_STATUS,
    a.SCOPE_STATUS,
    a.HR_STATUS,
    a.ISSUE_RISK_STATUS,
    a.OVERAL_ALL_STATUS,
    a.PROJECT_ID
    from ANG_PROJECT_STATUS a, ang_projects b
    where b.id = a.PROJECT_ID 
    and PROJECT_ID = :P20_ID
    and a.STATUS_DATE = (select max(d.STATUS_DATE)
                         from ANG_PROJECT_STATUS d
                         where d.PROJECT_ID = b.ID) 
    

    The columns

    a.TIME_STATUS,
    a.COST_STATUS,
    a.SCOPE_STATUS,
    a.HR_STATUS,
    a.ISSUE_RISK_STATUS,
    a.OVERAL_ALL_STATUS
    

    Can have data of green, orange or red, so I created conditions of climax.

    Anyway is to display the highlight color, but not the data

    Concerning

    Gus

    Gus C wrote:

    Apex 5

    Theme: universal

    I have an interactive report

    1. Select
    2. b.project_number,
    3. b.Name project_name,
    4. b.,
    5. b.start_date,
    6. b.end_date,
    7. a.ID,
    8. a.STATUS_DATE,
    9. a.TIME_STATUS,
    10. a.COST_STATUS,
    11. a.SCOPE_STATUS,
    12. a.HR_STATUS,
    13. a.ISSUE_RISK_STATUS,
    14. a.OVERAL_ALL_STATUS,
    15. a.PROJECT_ID
    16. ANG_PROJECT_STATUS a, ang_projects b
    17. where b.id = a.PROJECT_ID
    18. and = project: P20_ID
    19. and a.STATUS_DATE = (select max (d.STATUS_DATE)
    20. of ANG_PROJECT_STATUS d
    21. where d.PROJECT_ID = b.ID)

    The columns

    1. a.TIME_STATUS,
    2. a.COST_STATUS,
    3. a.SCOPE_STATUS,
    4. a.HR_STATUS,
    5. a.ISSUE_RISK_STATUS,
    6. a.OVERAL_ALL_STATUS

    Can have data of green, orange or red, so I created conditions of climax.

    Anyway is to display the highlight color, but not the data

    It is possible, but not appropriate for accessibility reasons. As noted in 1.4.1 WCAG success criteria, color should not be the only channel to transmit information. Without the status text, it will be difficult for color-blind users (up to 10% of the population) to distinguish colors in the report, giving them problems to understand and make the necessary arrangements. Here's how the report will look like to users with one of the most common types of color blindness:

    In a report like this, in addition to the color channel, I include the RAG status labels in its entirety as red/orange/green and include a title attribute detailing the underlying value or an explanation of how the status of CLOTH has been evaluated. In an interactive report, this can easily been done using an HTML Expression:

    #COST_STATUS#

  • report interactive apex 5, pivot action does not display columns in the application developed on 4.2.6

    I just installed apex 5.01 on apex 4.2.6.

    When I want to use the pivot of the action on an interactive report developed on 4.2.6 the names of the columns does not appear.

    If I add a new column, it seems

    calculated columns displayed

    Thank you

    Hello

    The pivot must be enabled for these columns.  To do this, you can upgrade the application developed in 4.2.6 as follows:

    -Click on the application

    -Click utilities

    -Click on the Application upgrade

    -Activate the IR Pivot should appear.  Click on the number of candidate object

    -You can select some or all of the IRs to upgrade

    Kind regards

    Christina

  • APEX 5: Can access reports interactive db session context?

    I need set the db with DBMS_SESSION session context. SET_IDENTIFIER and then use SYS_CONTEXT ('USERENV', 'CLIENT_IDENTIFIER') where the terms of views used by the application. There is no problem when rendering normal pages: implement process before header makes it available to all queries for the page is rendered, but interactive reports are not part of this process. Is it possible to always set the context to refresh an IR, any point of process or dynamic action etc. ? So far, it seems impossible...

    Hello

    use the "initialization of PL/SQL Code' attribute (shared components-> Security-> Session of database attributes) to put something in your session database that is used to process your request APEX.

    Concerning

    Patrick

  • break clause and column break report the area of ttitle

    in sqlplus, break on report clause causes the value of column previous failure to print again on the next great total page if the column break is printed on the title page. Is it possible to remove the break the column value in the region of tttile last total page big?

    Thank you.

    Hello

    In reply #3, I was talking about why SQL * more product for the page "Grnd Totl":

    Dept report

    Total general

    JOB TOTAL_COUNT

    --------- -----------

    14

    -----------

    14

    In other words, it puts the individual elements above the line and below the line AMOUNT.  In this case, it sounds strange, because there is only a single element above the line.  It would look funny if you give something like this:

    Dept report

    Total general for all departments

    JOB TOTAL_COUNT

    --------- -----------

    ANALYST 2

    4. THE CLERK

    MANAGER 3

    PRESIDENT 1

    SELLER 4

    -----------

    14

    I realize that's not what you (or your customers) asked, but you (or they) might like it.  (My favorite definition of 'feature' is "A bug that no one has the intention of".)

    It's an easy change, inserting one word will do:

    SELECT NVL (TO_CHAR (deptno)

    , 'Grand Total for all departments.

    ) AS dept

    work

    COUNT (*) AS total_count

    FROM scott.emp

    GROUP BY GROUPING SETS ((deptno, job)

    , (job)

    )

    CONSOLIDATION ORDER (deptno), deptno, job

    ;

  • report interactive by default alternating line colors, how to remove it?

    Is it possible to remove the alternating colours of the interactive report line.

    In a standard report, I can select the model of report, but in an interactive report No.

    Kind regards

    Rob

    To customize a single page, add this rule to the page Inline CSS attribute:

    .apexir_WORKSHEET_DATA tr.odd td {
      background: rgb(242, 242, 242) !important;
    }
    

    To apply to an entire application, or add

    .apexir_WORKSHEET_DATA tr.odd td {
      background: rgb(242, 242, 242) !important;
    }
    

    attribute to Style sheet cascading Inline on each model of the page, or create a CSS containing file

    .apexir_WORKSHEET_DATA tr.odd td {
      background: rgb(242, 242, 242);
    }
    

    Transfer it to your workspace and make reference to it after the theme link in each page header template:

    
    
    

Maybe you are looking for

  • iPod Classic displays all illustrations

    Hello I recently used AlbumArt to quickly find album artwork. In fact, so many illustrations of album on the iPod is all black, or for the bad album. It shows perfectly in iTunes. Matthew

  • Wrap the ActiveX control in a lvclass?

    I am trying to wrap an ActiveX control in a class. I use a Refnum of the automation of the private cluster for containing the reference to the class, create the open instance of ActiveX Automation and the private refnum allows access to the class. Ve

  • Photosmart HP 6520 cannot connect to the server to use apps on printer

    Last night, I bought the printer, saved, set up with the apps on my phone and Tablet and connected it wireless. When I try using one of the applications on the screen it is written "server connection error:-1 there was a problem connecting to the ser

  • Sansa fuze wont hard reset

    I'm trying to do a hard reset on my sansa fuze, but she will not be reset. She didn't after I check the 'Yes' box is asking me to choose a language and the country and then returns to the menu without reboot or reset.

  • Copy Emails to disk

    How copy a whole folder of emails on a disk and be able to open and read from the disk?