vitmalina / w2ui

UI widgets for modern apps. Data table, forms, toolbars, sidebar, tabs, tooltips, popups. All under 120kb (gzipped).
http://w2ui.com
MIT License
2.63k stars 735 forks source link

How can I prevent the loading message tip from appearing when grid.reload is called? #2484

Closed xiusin closed 6 months ago

xiusin commented 6 months ago
 grid2.on('load', function (event) {
            grid2.unlock();
        });

        grid2.on('reload', function (event) {
            grid2.unlock();
        });

        setInterval(() => {
            grid2.reload()
            grid2.unlock();
        }, 3000)

I will have a flash screen effect when using the above code