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
            Priority: Minor


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.

Reply via email to