[JBoss Seam] - s:selectDate ajaxRender
by venkateshbr
Noticed a few problems with s:selectDate when it is rendered through ajax.
i have the following code
| <a4j:outputPanel id="details">
| <h:inputText id="regDate" <s:convertDateTime pattern="dd/MM/yyyy" /> </h:inputText>
| <s:selectDate id="selectRegDate" for="regDate" dateFormat="dd/MM/yyyy">
| <h:graphicImage url="/images/dtpick.gif" style="margin-left:5px;cursor:pointer" />
| </s:selectDate>
| </a4j:outputPanel>
|
When the outputPanel is rendered using an event from other component with the following code.
<a4j:support event="onchange" reRender="details">
The dateformat sometimes defaults to MM/dd/yyyy.
and also the selectdate component does not generate any events for validation. i.e i cannot have a4j:support for ajax invocation inside h:inputText
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4030190#4030190
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4030190
19Â years, 1Â month
[JBoss Seam] - Reporting Seam version
by baz
Hello,
i have written a little utility for version reporting of jar files. This is the ant task which shows the usage:
<target name="getversion">
| <java classname="de.bafz.utils.JarVersion"
| classpath="ant/jarversion.jar"
| outputproperty="bazversion.seam">
| <arg value="${webinf.dir}/lib/jboss-seam.jar" />
| </java>
| ....
| <echo>
| Facelets ${bazversion.facelets}
| Seam ${bazversion.seam}
| Hibernate ${bazversion.hibernate}
| Myfaces ${bazversion.myfaces}
| Tomahawk ${bazversion.tomahawk}
| </echo>
| </target>
|
My problem: The output is:
[echo] Facelets 1.1.12
| [echo] Seam No version available.
| [echo] Hibernate 3.2.1.ga (hibernate.org)
| [echo] Myfaces 1.1.4 (Apache Software Foundation)
| [echo] Tomahawk 1.1.3 (Apache Software Foundation)
|
There is an jira entry which describes the problem:
http://jira.jboss.org/jira/browse/JBSEAM-882
By now, i have to hand edit the MANIFEST by hand to get my utility working for seam. It would be nice if this little change could be incorporated in the next seam release. Thanks
Ciao,
Carsten
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4030183#4030183
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4030183
19Â years, 1Â month
[JBoss jBPM] - Small nit with jpdl-3.2.xsd
by wjm
The latest change to the 3.2 xsd file introduced an error which, as a complete newbie, I boggled over for some time. :-) The websale bits would neither compile nor run as junit tests until I applied the following patch:
Index: jpdl-3.2.xsd
===================================================================
RCS file: /cvsroot/jbpm/jbpm.3/jpdl/jar/src/main/java/org/jbpm/jpdl/xml/jpdl-3.2
.xsd,v
retrieving revision 1.4
diff -r1.4 jpdl-3.2.xsd
365,368c365,370
< <xs:element name="reminder">
< <xs:attribute name="duedate" type="xs:string" use="required" />
< <xs:attribute name="repeat" type="xs:string" />
< <xs:attribute name="transition" type="xs:string" />
---
> <xs:element name="reminder">
> <xs:complexType>
> <xs:attribute name="duedate" type="xs:string" use="required" />
> <xs:attribute name="repeat" type="xs:string" />
> <xs:attribute name="transition" type="xs:string" />
> </xs:complexType>
Thanks for jbpm. I'm looking forward to implementing it in our product.
Bill
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4030182#4030182
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4030182
19Â years, 1Â month