source for core 1.1.3 and tomahawk 1.1.2

2006-06-13 Thread Kevin Hale Boyes
I'm looking for the source for the versions in $subject. I can check it out from SVN if needed but I'm not sure how to do that. I've read Building_With_Maven on the wiki but it talks about current/HEAD. So maybe something like: svn checkout http://svn.apache.org/repos/asf/myfaces/tomahawk/branc

does h:commandLink need a h:form

2006-05-24 Thread Kevin Hale Boyes
I have the following findex.jsp file <%@ taglib uri="http://java.sun.com/jsf/html"; prefix="h" %> <%@ taglib uri="http://java.sun.com/jsf/core"; prefix="f" %> title but when I click "Go" I get an error in my JavaScript Console. "clear_linkDummyForm is not defined" in http://localh

output text

2005-11-08 Thread Kevin Hale Boyes
I find myself doing this a lot: I can use when I have simple strings for the parameters but not for examples like above. Is there an easier way to output this kind of text? Thanks, Kevin.

collection size

2005-11-04 Thread Kevin Hale Boyes
I have a handler return a list of SelectItems that I use as: ... But, if there is only one item in the list then I'd like to change it to plain output text (and a hidden input) So, I tried but that isn't valid expression syntax. How do I get the size of my collection (

RE: Action called twice

2005-10-21 Thread Kevin Hale Boyes
Check your web.xml file to see if you're including faces-config.xml if defined in the for javax.faces.CONFIG_FILES. faces-config.xml is automatically loaded by JSF so if you've specified in the context-param then it is loaded twice. This causes some actions to be called twice. At least, this i