All Downloads are FREE. Search and download functionalities are using the official Maven repository.

template.archive.simple.table.vm Maven / Gradle / Ivy

There is a newer version: 2.2.5
Show newest version
#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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy