Hello,
Is there a way to pass a bean property to a
template:put content?
I've tried using a <bean:write...> in the
content parameter but it just
passes it straight through (with or without direct
set).
I've also tried:
<bean:define id="xyz" name="theForm"
property="theProperty"/>
<template:insert
template='/corePageHeader.jsp'>
<template:put name="title" content='xyz' /> </template:insert>
Still just passes the 'xyz' literal.
I've also tried Oleg's ExtPut like:
<template:insert
template='/pageHeader.jsp'>
<template:extput name="title"> <bean:write name="theForm"
property="theproperty"/>
</template:extput>
</template:insert> But that doesn't work either. Any
ideas?
-Mike
|