Datatable filtering + width

It seems that adding a ‘textFilter’ to a dataTable column removes the ability to set the columns width. Do I need to set the width through css then ?

Can you share a snippet?

There must no be conflict between those two settings.

It seems to have something todo with getting the data from REST.
This is the code with local data: http://webix.com/snippet/2b1f84b7
But if I get the data like this
save: “rest->data/datatable_rest.php”,
url: “rest->data/datatable.php”
the columns loose their width and revert back to automatic width or something
(I would show you a printscreen, but I don’t know how to paste it in here)

Taking a closer look at the snippet, I noticed (although it looked better than with REST) the width doesn’t respond to changes in the code either.

Maksim, sorry to have bothered you.
I added - adjust:“false” - to the column strings, I thought this stood for “do not adjust automatically”. When removing this everything works fine.

adjust:false will work in your case, but adjust:"false" will really enable column size adjusting as string value is processed as positive one.

thanks