Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个有 5 列的网格内一次显示 1500 到 2000 条记录。工具栏上有一个组合框。当会有组合更改时,我需要更新 2 列数据。为此,我正在阅读商店并设置每条记录的值(2 列)。为 2 列设置的任何值都来自另一个 JsonStore。
由于有超过 1000 条记录,它需要一些时间来更新 2 列数据。现在,我试图在组合更改和 unmsak() 设置所有记录后屏蔽网格。
设置所有记录值后如何取消屏蔽网格?
提前致谢!!!!
您可以为此使用 setLoading() 方法:
grid.setLoading(true); // <-- show default load mask to grid grid.setLoading('some text'); // <-- show load mask with your text grid.setLoading(false); // <-- hide load mask