Reputation: 367
Is it possible to get the value of "headerValue" attribute in the "select" tag from resource bundle in case I am using internationalization?
What are other possible options?
BR SC
Upvotes: 3
Views: 5241
Reputation: 882
Yes you can... hope you already have have a property file...
In Properties file,
propertyKey=List Header Value
Call it as follows in tag,
<s:select list="itemList" headerKey="0" headerValue="%{getText('propertyKey')}"/>
Hope this will help....
Upvotes: 10