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
Describe the bug
The top/bottom column calculations do not work correctly with the setting renderHorizontal: "virtual".
For columns that are lazily loaded, nothing is computed and no field is shown in the top/bottom calc rows.
Disabling virtual rendering of columns fixes the problem.
Ah, thanks for the tip, I must have overlooked that in the documentation.
But it seems the automatic disabling of the horizontal virtual DOM does not work if the setting is explicitly enabled in the config, as in my example above.
Should I keep this issue open? For me its fine to close it, as it works (almost) as documented.
Describe the bug
The top/bottom column calculations do not work correctly with the setting
renderHorizontal: "virtual"
.For columns that are lazily loaded, nothing is computed and no field is shown in the top/bottom calc rows.
Disabling virtual rendering of columns fixes the problem.
Tabulator Info
Tabulator 6.3
Working Example
https://jsfiddle.net/Lpdav9r8/22/
To Reproduce
Workarounds to get the expected calculations
renderHorizontal: "virtual",
or
{title:"ID", field:"id", width:500},
(columns are not loaded lazily in that case, and calculation works)
Expected behavior
The column calculations should be shown also for lazily loaded columns with
renderHorizontal: "virtual",
.Desktop:
The text was updated successfully, but these errors were encountered: