| Issue 135: | <jmesa:htmlColumn property="varname.property" is not rendering any data | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Here while i write proerties="varname.name" in htmlColumn it does not
render but while i use properties="name" it renders the value.Please let me
know is it a bug or some other problem.
<jmesa:tableFacade id="tag"
items="${jurisdictionModel.jurisdictionList}"
var="varname"
maxRows="10"
>
<jmesa:htmlTable width="980px">
<jmesa:htmlRow>
<jmesa:htmlColumn property="varname.name"
title="Select Jurisdiction" width="20%" filterable="false"
sortable="false" />
<jmesa:htmlColumn property="name" title="Name" width="40%"
filterable="false" sortable="false" />
Aug 15, 2008
(No comment was entered for this change.)
Status:
Invalid
Labels: -Type-Defect Type-Other |
Strange...I thought for sure I replied to this message... This is not a bug. The var attribute is used to give you a way to script in the column body. The var attribute is used to access the current item being iterated over. The property is the property item (or attribute in bean if you prefer) that you want to access. Here is an example of using the var attribute in the column body: <jmesa:htmlColumn ...> <a href>${varname.name}</a> </jmesa:htmlColumn>