Disabling column sorting on script report

I find this method to achieve the same goal. It simply removes the element containing the sort options from all columns upon loading the report results (put in the .js file):

	after_datatable_render: table_instance => {
		$("div.dt-dropdown").hide()
	},

Reference: