[Vuejs]-SlickGrid in Vuejs and overflow:scroll

0👍

So, i found how to fix a problem. The problem is based in this stuff – SlickGrid can’t calculate width of column if you set in css style overflow-y: scroll;. You need to use in creating grid grid.options.alwaysShowVerticalScroll = true;. This stuff is working alright.

Leave a comment