Hi ,
I am using the datatable in the context of script report erpnext.
I return a couple of columns for my report and I set the "sortable" property on the second one as false.
But I still see that this column is sortable on the UI. is there something I am missing ?
This is what my config for column is
[
{
"fieldname": "lead_id",
"fieldtype": "Link",
"label": "Lead id",
"options": "Lead",
"width": 0
},
{
"fieldname": "creation",
"fieldtype": "Date",
"label": "Lead Received Date",
"sortable": "false"
}]```