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#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...