SAP UI5 项目中的排序列表
是的,你可以。可以使用列表中可用的 sorter 属性。它允许你指定所有必需的详细信息。例如,
<List Items="{ path: '/EmployeeCollection', sorter: { path: 'EmployeeName', descending: true, group: true } }" headerText="Employees" />
我指定按照员工姓名对员工集合进行排序,并指定按降序进行排序。在对数据进行排序时也应考虑分组。
广告