gvNIX datatables 设置排序选项table(哪些字段)

gvNIX datatables set sorting options table (which fields)

如何使用 gvNIX 数据table指定数据table的排序? 基于 Petclinic 示例的示例会很棒。

对于我的应用程序,我希望每个 table 指定数据 table 中记录的排序顺序。

锁定 src/main/webapp/WEB-INF/tags/datatables/column.tagx 属性 sortInitsortDirection 中支持的选项应该对您有所帮助。

<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 文件。它的参数将向您显示所有支持的选项和您可以使用的功能。

祝你好运!