You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Matthias Weßendorf (JIRA)" <de...@myfaces.apache.org> on 2009/02/16 11:05:03 UTC

[jira] Resolved: (TRINIDAD-1395) Trinidad does not work with T-Online Browser

     [ https://issues.apache.org/jira/browse/TRINIDAD-1395?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matthias Weßendorf resolved TRINIDAD-1395.
------------------------------------------

       Resolution: Fixed
    Fix Version/s:  1.2.12-core
         Assignee: Matthias Weßendorf

> Trinidad does not work with T-Online Browser
> --------------------------------------------
>
>                 Key: TRINIDAD-1395
>                 URL: https://issues.apache.org/jira/browse/TRINIDAD-1395
>             Project: MyFaces Trinidad
>          Issue Type: Bug
>          Components: Components
>    Affects Versions: 1.2.10-core
>            Reporter: Jürgen Kofler
>            Assignee: Matthias Weßendorf
>            Priority: Minor
>             Fix For:  1.2.12-core
>
>
> T-Online is a german ISP that ships its own web browser. Despite this browser is based on IE 7 it does not work with Trinidad:
> submitForm() in Core.js and sendFormPost() and _doRequestThroughIframe() in RequestQueue.js fail because window.external.AutoCompleteSaveForm() is not definied within this browser. That might have to do with their own autocomplete implementation. Anyway, a possible fix that works for us is to surround the function call by a try-catch: 
> if(_agent.isIE && window.external) {
>   try {
>     window.external.AutoCompleteSaveForm(a0);
>   } catch(e) {}
> }
> T-Online Browser: http://service.t-online.de/c/12/70/32/96/12703296.html  

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.