是否可以禁用 zkoss 中的加载栏?

发布于 2024-10-06 18:41:48 字数 27 浏览 4 评论 0原文

有没有办法禁用zkoss框架中的加载栏?

Is there any way to disable the loading bar in zkoss framework?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

樱桃奶球 2024-10-13 18:41:48

好吧...我不确定您要禁用哪种加载消息

,有两种忙碌,一种位于左上角,另一种位于带有全页掩码的中心。

我创建一个按钮来测试它们

<zk>
<button label="showMaskBusy" onClick='Clients.showBusy("some message...")' />
<button label="showLeftTopBusy" onClick='org.zkoss.lang.Threads.sleep(10000)' />
</zk>

,然后禁用它们的方法是使用 CSS

 /**Center + Mask Busy**/

 #zk_showBusy {
   display: none !important;
 }

 /**Left Top Busy**/
 .z-loading-indicator { 
   display: none !important;
 } 

尝试将它们添加到测试按钮页面中。

well... im not sure about what kind of loading message you want to disable

there're two kinds of busy, one is on left top, another is on center with full page mask.

i create a button to test them

<zk>
<button label="showMaskBusy" onClick='Clients.showBusy("some message...")' />
<button label="showLeftTopBusy" onClick='org.zkoss.lang.Threads.sleep(10000)' />
</zk>

then the way to disable them is using CSS

 /**Center + Mask Busy**/

 #zk_showBusy {
   display: none !important;
 }

 /**Left Top Busy**/
 .z-loading-indicator { 
   display: none !important;
 } 

try add them into the test button page.

╭⌒浅淡时光〆 2024-10-13 18:41:48

我假设您正在谈论加载消息?如果没有,请告诉我。

您可以通过将样式设置为 display: none; 来做到这一点。在 CSS 中。您可以按照样式指南条目来执行此操作。

I assume you are talking about the loading message? If not please let me know.

You can do this by setting the style to display: none; in the CSS. You can do this by following the Style Guide entry.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文