Remove datatable sort

Hi,

How to remove datatable sort?

https://snippet.webix.com/3jd6w1rr

Hello,

Instead of autoConfig:true you can specify an array of column configurations for the datatable

view:"datatable", 
columns:[
    {id:"id", header:"Id", width:50},
    {id:"title", header:"Film title"}
]

Please check the example: https://snippet.webix.com/w675bysd

In addition, you can show and hide the sorting sign (˄/˅) by calling the markSorting() method.
When used with no arguments, the method removes all the sorting signs from the datatable headers.

I have dynamic data so I need to use autoConfig:true. How Can I remove sort in such datatable?

https://snippet.webix.com/e321jdxb