2

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 need set value of fileBasedQueueLocation variable available in bvProperties bean available in action.

I have also created setter as well as getter method for bvProperties in action.

Roman C
  • 49,761
  • 33
  • 66
  • 176
Darshan Patel
  • 3,176
  • 6
  • 26
  • 49

1 Answers1

1

The syntax you should try:

<input size=40 name="bvProperties.fileBasedQueueLocation" 
            type="text" value="${(badgeVilleProperties.fileBasedQueueLocation)!}" style="float: right;"/>
Roman C
  • 49,761
  • 33
  • 66
  • 176