JSP tag used for creating a table column.
Note that this tag supports dynamic attributes with only string values. See {@link #setDynamicAttribute(String,String,Object)} below.
Example usage:
<datatables:table id="myTableId" data="${persons}"> <datatables:column title="Id" property="id" /> <datatables:column title="LastName" property="lastName" /> <datatables:column title="FirstName" property="firstName" /> <datatables:column title="City" property="address.town.name" /> <datatables:column title="Mail" property="mail" /> </datatables:table>@author Thibault Duchateau @since 0.1.0
|
|
|
|