Hi,
I am using sandBox subform to handle multiple forms in a single html document. Everything works well really well except when it comes to the the use of commandlink. I find that commandlink won't work when subform is used. My simplified codes is as follows:
<h:form id="caiaLicenceForm">
....
<s:subForm id="subFormId">
<h:inputText value="#{bean.value}" />
<t:commandButton value="Submit subForm"/>
</s:subForm>
<h:inputText value="#{bean.value}" />
<t:commandButton value="Submit subForm"/>
</s:subForm>
<t:commandlink action="">
</h:form>
I got the following _javascript_ error: caiaLicenceForm:_idcl is null or not an object
where "caiaLicenceForm" is my main form id.
I am using the following jar files:
1) myfaces-api-1.1.5-SNAPSHOT.jar
2) myfaces-impl-1.1.5-SNAPSHOT.jar
3) tomahawk-1.1.5-SNAPSHOT.jar
4) tomahawk-sandbox-1.1.5-SNAPSHOT.jar
Is there anyone who has used commandlink with sandBox subform and has no problem with it? Need a reply from anyone. Thanks in advance.

