[ 
https://issues.apache.org/jira/browse/TOMAHAWK-1502?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12862450#action_12862450
 ] 

Leonardo Uribe commented on TOMAHAWK-1502:
------------------------------------------

I have IE 8 and it is working ok. I don't see any problem, nothing has changed 
in that code or I don't see a change on jsf 2.0 spec that make this one fails. 
We need more information to be able to reproduce this issue. In theory it 
should work without problem. Maybe it could be an incompatibility but related 
to this javascript rendered by t:subForm:

<script type="text/javascript"><!--
function personForm_submit() {
var form = document.forms['j_id582779744_53aa3144'];
var el = document.createElement("input");
el.type = "hidden";
el.name = "org.apache.myfaces.custom.subform.submittedId";
el.value = "personForm";
form.appendChild(el);
form.submit();
}

//--></script>

Maybe we have to do something like this:

                var form = document.forms[formname];
                if (typeof form == 'undefined')
                {
                        form = document.getElementById(formname);
                }

It could be good to have confirmation if IE7 has problem, so we can change the 
code and fix this issue.

> subForm trunk war file example bugs
> -----------------------------------
>
>                 Key: TOMAHAWK-1502
>                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1502
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: AJAX Form Components, Examples, SubForm
>    Affects Versions: 1.1.10-SNAPSHOT
>         Environment: WIn XP, JDK 1.6.0.20, Tomcat  6.0.24, MyFaces 2.0.1 - 
> Snapshots (api + impl), Tomahawk20-1.1.10 Snapshot
>            Reporter: Oliver Bayer
>
> The subForm example -tomahawk trunk build at revision 939215- isn't working 
> in IE 7 without throwing any JS errors or logs in the tomcat console. With FF 
> 3.6.3 it's working as expected.

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