You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The attached aip contains a modified version of the example-dynamic-filtered-with-jquery-tabs.html file from the examples folder in your build tree. Extract it, put it into the examples folder of a copy your build tree then open/run it. If you try to edit the 'Relevance' (last) column of one of the last two rows (row 49 or 50). You should see that the entire row disappears from the grid. If you edit any of the higher up rows that do not cause the grid to scroll, then it weeks fine. This only seems to happen when editing a row that causes the grid to scroll when the editor is opened. If you turn auto-height off, the issues does not happen, but we need editable cells with auto height on. We are using v2.4.24 of the grid.
The text was updated successfully, but these errors were encountered:
Thanks for the bug report. The solution was to prevent the grid handling the scroll event when autoheight is being used.
slick.grid.js:
function handleScroll() {
+ // autoheight does not have scrolling, but editors can trigger a scroll, which we should ignore
+ if (options.autoHeight) return;
scrollTop = $viewportScrollContainerY[0].scrollTop;
scrollLeft = $viewportScrollContainerX[0].scrollLeft;
return _handleScroll(false);
}
example-dynamic-filtered-with-jquery-tabs.zip
The attached aip contains a modified version of the example-dynamic-filtered-with-jquery-tabs.html file from the examples folder in your build tree. Extract it, put it into the examples folder of a copy your build tree then open/run it. If you try to edit the 'Relevance' (last) column of one of the last two rows (row 49 or 50). You should see that the entire row disappears from the grid. If you edit any of the higher up rows that do not cause the grid to scroll, then it weeks fine. This only seems to happen when editing a row that causes the grid to scroll when the editor is opened. If you turn auto-height off, the issues does not happen, but we need editable cells with auto height on. We are using v2.4.24 of the grid.
The text was updated successfully, but these errors were encountered: