[jboss-user] [JBoss jBPM] - Re: Anyone running jBPM on Oralce AS 10.1.2 ?

sobedrinker do-not-reply at jboss.com
Wed Aug 23 16:22:28 EDT 2006


Found it!!!
It is in the task.jsp file. 

Their are JSF tags inside of JSTL logic c:choose.  


  | <c:choose>
  | 	<c:when test="${!empty taskBean.availableTransitions}">
  |       Task Actions: 
  | 		<c:forEach var="availableTransition" items="${taskBean.availableTransitions}">
  | 			<c:set var="availableTransition" scope="request" value="${availableTransition}" />
  | 			<h:commandButton id="transitionButton" action="#{taskBean.saveAndClose}"
  | 				value="#{availableTransition.name}" />
  | 		</c:forEach>
  | 	</c:when>
  | 	<c:otherwise>
  | 		<h:commandButton id="transitionButton"
  | 			action="#{taskBean.saveAndClose}" value="Save and Close Task" />
  | 	</c:otherwise>
  | </c:choose>
  | 

I commented this block of code out and the page rendered fine.

I'll make some changes and try not to use the JSTL tags and post back the results!

Thanks,
Chad

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3967099#3967099

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3967099



More information about the jboss-user mailing list