Dear all,
I have the following column > if you will see on video attached > on that column i have show among other thinks the Date & Time > when i am updating the time > i need to update the order of the transfers sorting them by date time > At the video case when i update 12.40 to 11.40 it should go above 12.00 record.
The think is that i don't have dateTime column > can you show me how can i sort that type:template column ?
Thanks
{
type: 'template',
field: "template",
flex: 0.7,
text: 'Services',
filterable: false,
autoHeight: true,
minWidth: 250,
readOnly: true,
template: ({record}) => {
if (record.serviceType === WS_TYPES.SERVICE_TYPE_TRANSFER) {
return gridTransferItem(record)
} else if (record.serviceType === WS_TYPES.SERVICE_TYPE_REQUEST) {
return gridTransferRequestItem(record);
}
},
},