Hi,
I would like to disable the sort in my table.
onBeforeSort is not a good solution for me, since I don’t want to change the css of this table.
Is there another solution for that?
Thanks!
Hi,
I would like to disable the sort in my table.
onBeforeSort is not a good solution for me, since I don’t want to change the css of this table.
Is there another solution for that?
Thanks!
looks like you are using autoConfig:true
then you need to catch onStructureLoad
event and reconfigure columns as you need
https://docs.webix.com/api__ui.datatable_onstructureload_event.html
https://snippet.webix.com/lx9341ug
Great! thanks