Extra Column to Datatable

Can someone help me understand why I keep getting an “extra” (blank) column to the very right of a datatable? I’m not sure how to add a screenshot example. This column spans both “rows” if a filter “row” is added to the header.
Thanks for any pointers
SrvrSide

You can try to replicate your issue here - http://webix.com/snippet/69543e2b
and use a share button to get a code of the problematic snippet.

Typically, you can use a “fillspace” attribute for some column to use all space in datatable by some column.

Hello Maksim, sorry for the delay. Thank you for the suggestion, I tried using the same code (copied and pasted) and get different results. Using the suggested interface here is the link to the code http://webix.com/snippet/8fb542e3
I’ve also made a small screen shot available of what I get in my application. You will be able to see in the highlighted boxes, the strange “extra” column that is rendered. http://postimg.org/image/n89u8opat/
Thanks for any ideas/pointers
SrvrSide

If you have a scroll enabled for the grid, grid will reserve a space for scrollbar and will create one extra column.

You can use scrollY:false

http://webix.com/snippet/f960dc0c

Or you can use CustomScrool (pro version only)

http://webix.com/snippet/5e48ac62

Thank you Maksim, that explains what I’m seeing perfectly. It also removes the reserved space when I used the suggested ‘scrollY:false’. I’ll be looking to purchase the pro version when the application is closer to completion.
Thanks again
SrvrSide