Frage

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

War es hilfreich?

Lösung

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

and then

${subPath}
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top