Question

I'm using magnolia and I have this variable:

${def.parameters.subTemplate}

I want to set the variable subPath, I'm doing the following below

<% String subPath= ${def.parameters.subTemplate};  %>

but it doesn't work

Était-ce utile?

La solution

<c:set var="subPath" value="${def.perameters.subTemplate" />

and then

${subPath}
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top