I’m glad that 16.1.1 works well for you. In general, the patch did not change anything in the plugin, but maybe there was a glitch with the documentation or the example. In the end, I am happy that the plugin works well.
When it comes to the dialog - did you try the afterLoadData() or afterChang() hooks?
Hello, thank you for your reply. Regarding pagination and preload, the issue was that I was using the old language file. After downloading the new one, everything worked fine.
Can you please provide me with simple example regarding the following
The preloading works fine now, and I want to hide it once the data has fully loaded by using… hot.getPlugin(‘loading’).hide();
Any sample would be helpful and thanks in advance:)
Thank you! Can I remove the setTimeout function? I don’t want to wait 2 seconds—once all the data is loaded, hot.getPlugin('loading').hide(); should run immediately.
I tried to remove the following from your example setTimeout(() => {
Sure, you can remove it - it will work the same way. I just wanted to show that there is a transition - for the eye. With these online demos, we can only “fake” data loading as it is already there in the same JavaScript file defined as a variable. But once you run it on the server with a lot of data (which generally would take seconds or longer), the transition should be visible.
Thank you for your response. However, when I use this method, the entire table freezes, and I can no longer use the filters or select any cells. I’m not sure what the issue is. Also, in your example, once it’s applied, the table becomes frozen, and selecting cells or using filters is no longer possible. Could you please verify this on your side at your example?