I have been trying to figure out if what I am trying is possible using JSTL. I am storing the following inside a database table
<c:when test="${row.actionType == 'com'}">
${row.actionText}
</c:when>
thus I am storing the following String in a column in a table
<assign name="LocationID" expr="'${row.locationId}'"/>
<submit next="/aotg/dynApp" namelist="UserID AppID LocationID"/>
thus the above string for example gets written to ${row.actionText}
and gets resolved. But of course the output in the JSTL is exactly as above without resolving
the variable ${row.locationId}
inside the String. Can you also somehow resolve the inner variable as well?
Is something like this even possible or do I need to hard code any parameters I might be using inside the JSTL page instead of trying to dynamically read it from the table?