Not all columns in DataTable are shown when setting width

Hello everyone,

I’m facing a strange problem with sizing my DataTable. It should contain 4 columns. The name of a staff member, a short description and two buttons/links to edit or delete the profile.
But my table shows only the first three columns (I can swap the columns around, it’s every time the first three).
I’ve figured out that it has something to do with the width parameter.

What I wanted to do was:

  • let the “name” column set it’s size accordingly to the content: So I use adjust:true, because I don’t know how long names can possibly be and I don’t want the cut
  • the “description” column is alowed to take as much space as is left: So I use fillspace:true
  • the control elements “edit” and “delete” should consume as less space as possible: So I use a fixed width. When trying to use adjust:true the icons was cut

When I delete all width parameter the table shows the content properly.

So, how can I format my DataTable to achieve a formatition as described above?
Code snipped for demonstration: http://webix.com/snippet/f55b639f

regards

Width of column must be defined as a number, not as a string.
http://webix.com/snippet/d8b1e356