Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a list of Strings that are attribute names and a Map. I'm trying to access a model(ex.project) in the map using attribute name in string list.

Here is what I have now.

<s:iterator value="theMap" var="element">
  <tr>
    <s:iterator value="attributeList" var="attrName">
      <td><p><s:property value="#element.Project.#attrName" /></p></td>
    </s:iterator>
  </tr>
</s:iterator>

If I hard code the attribute name it works fine:

<td><p><s:property value="#element.Project.projectName" /></p></td>

Any advice is appreciated.

share|improve this question
1  
I have no utter idea about Struts2/OGNL, but in standard JSP EL it is possible by brace notation like ${element.project[attrName]}. – BalusC Feb 18 '11 at 15:57
Well. That also did the trick for me. Thanks – movence Feb 18 '11 at 16:18
This answer has proven to be useful already. Great Stuff. – Alex Feb 20 '11 at 12:22

1 Answer

Using OGNL <s:property value="#element.Project[#attrName]" />

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.