Reputation: 3256
I am new to Jive as well as Freemarker.
I tried following approach like we did in Struts:
<input size=40 name="bvProperties.fileBasedQueueLocation"
type="text" value="${badgeVilleProperties.fileBasedQueueLocation!''}" style="float: right;"/>
that needs to set a value of fileBasedQueueLocation
variable to bvProperties
bean, which is available in the action.
I have also created a setter, as well as a getter method for bvProperties
in action.
Upvotes: 1
Views: 305
Reputation: 1
The syntax you should try:
<input size=40 name="bvProperties.fileBasedQueueLocation"
type="text" value="${(badgeVilleProperties.fileBasedQueueLocation)!}" style="float: right;"/>
Upvotes: 1