Hello,
In the 5.5.3 version of the Gantt and Scheduler Pro components, we used a ResourceStore that is grouped by a departmentDescription field, however all records also have a sortOrder field, which we used to sort by. We did this using the groupSortFn config:
group: {
field: "departmentdescription",
groupSortFn: departmentSortResources,
},
And in this function we had access to all of the fields of the resource record, which we could use to sort them:
In version 6.1.6 with the same groupSortFn, we no longer have access to any other fields than the departmentDescription in the sort function:
How can we make this information available again? Or is there a different way to sort the groups and records within them on certain fields?