Набор данных gvNIX устанавливает таблицу параметров сортировки (какие поля)
Как я могу указать сортировку данных с помощью gvNIX datatables? И пример, основанный на образце Petclinic, был бы отличным.
Для моего приложения я хочу, чтобы для каждой таблицы был указан порядок сортировки записей в таблицах данных.
1 ответ
Решение
Блокировка опций, поддерживаемых в src/main/webapp/WEB-INF/tags/datatables/column.tagx
атрибуты sortInit
а также sortDirection
должен помочь тебе.
<jsp:directive.attribute name="sortInit"
type="java.lang.String" required="false" rtexprvalue="true"
description="(asc|desc) If sortable is enabled, set the default sorting direction (Default : asc)" />
<jsp:directive.attribute name="sortDirection"
type="java.lang.String" required="false" rtexprvalue="true"
description="((asc|desc)[,(asc|desc)[...]])If sortable is enabled, allow to control the sorting direction(s) (default 'asc,desc') (related to asSorting js-datatables columnDef)" />
Например, на list.jspx:
<table:table data="${pets}" id="l_com_springsource_petclinic_domain_Pet" path="/pets" z="gvs425syhOX//lJjxIylimFQflM=">
<table:column id="c_com_springsource_petclinic_domain_Pet_sendReminders"
property="sendReminders" z="9OZRH4z6dmoKcOlx/Gs0++zdd/A="/>
<table:column id="c_com_springsource_petclinic_domain_Pet_name"
property="name" sortInit="asc" z="USER-MANAGED"/>
<table:column id="c_com_springsource_petclinic_domain_Pet_weight" property="weight" z="sDq86anRDnXzji8d7j+tb9X7coI="/>
....
....
</table:table>
Я советую вам просмотреть все файлы .tagx. Его параметры покажут вам все поддерживаемые параметры и функции, которые вы можете использовать.
Удачи!