#set($webTable=$tag) #set($tableModel=$webTable.Model) #if($tableModel)

#* Show the visible column names. Use the display name that can be set in the jsp. *# #foreach($curColumn in $webTable.Columns) #if($curColumn.isVisible()) #end #end #foreach($curRow in $webTable.RowIterator) #foreach($curColumn in $curRow) #end #end
#if($webTable.isSortable())
$curColumn.DisplayName
#if(($webTable.sortColumn == $curColumn.offset) && ($webTable.sortOrder == 'ASC')) #else #end
#if(($webTable.sortColumn == $curColumn.offset) && ($webTable.sortOrder == 'DESC')) #else #end
#else $curColumn.DisplayName #end
$curColumn

#end