Is it possible to easily get hold of information about a flow (other than the flowExecutionKey) from a JSP?
I am basically trying to enable or disable hyperlinks based on the currently executing flow id - for example:
<c:if test="${_flowId == 'foo'}">
<a href="<c:url value='bar.htm'/>">(back)</a>
</c:if>
If this is not possible, what would be the best way to approach this. Should I use a flow variable or an attribute?


Reply With Quote