There is function
queuePostProcessedRowForCleanup(cacheEntry, postProcessedRow, rowIdx)
(in file slick.grid.js)
It gets called in
// ////////////////////////////////////////////////////////////////////////////////////////////
// Interactivity
function handleMouseWheel(e)
[...]
queuePostProcessedRowForCleanup(zombieRowCacheFromLastMouseWheelEvent,
zombieRowPostProcessedFromLastMouseWheelEvent);
It's missing the rowIdx parameter, and it's not setting a default-value anywhere...
There is function
queuePostProcessedRowForCleanup(cacheEntry, postProcessedRow, rowIdx)(in file slick.grid.js)
It gets called in
It's missing the rowIdx parameter, and it's not setting a default-value anywhere...