When use setting
adjust:true at Columns setting, last column table have no visible border
Example,
http://webix.com/snippet/c3f111b0
What I do wrong, and how fix it?
When use setting
adjust:true at Columns setting, last column table have no visible border
Example,
http://webix.com/snippet/c3f111b0
What I do wrong, and how fix it?
The left border matches the border of the parent container. So you can set width
of the div
or use the same property for the datatable.
By the way, adjust:true
adjusts the width of the column to its content. Perhaps spreading any column to the border via the fillspace:true
property will be useful. Check the snippet:
http://webix.com/snippet/38836122
Related article: http://docs.webix.com/datatable__sizing.html
Thanks for answer.