Issue 135: <jmesa:htmlColumn property="varname.property" is not rendering any data
Status:  Invalid
Owner: ----
Closed:  Aug 2008
Reported by raj.k....@gmail.com, Aug 13, 2008
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
Project Member #1 jeff.johnston.mn@gmail.com
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>



Aug 15, 2008
Project Member #2 jeff.johnston.mn@gmail.com
(No comment was entered for this change.)
Status: Invalid
Labels: -Type-Defect Type-Other