如何为 extjs 消息框定义自定义动画 UI

发布于 2024-10-15 08:48:04 字数 174 浏览 2 评论 0原文

我需要在 extjs 中使用自定义 UI 弹出一个消息框。为此,我尝试了 Ext.MessageBox.show 和 Ext.Msg.wait 方法。我真正需要做的是显示自定义“加载”图像来代替无限运行的矩形进度条。有什么办法吗,我可以做吗?或者我应该采取不同的方法?

请原谅我的无知,我是第一次做JS的C++程序员。

I need to pop up a message box in extjs with custom UI. I have tried Ext.MessageBox.show and Ext.Msg.wait methods for this purpose. What I really need to do is to show a custom "Loading" image in place of infinitely running rectangular progress bar. Is there any way, I can do it? or should I take a different approach?

Please pardon my ignorance, I am a C++ programmer doing JS for the first time.

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

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

发布评论

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

评论(1

走过海棠暮 2024-10-22 08:48:04

尝试:

Ext.Msg.show({
    cls: "my-progress-class"
});

并定义一个 CSS 规则来显示您的自定义“请稍候”图像:

.my-progress-class {
    background: url(image/wait.png) 50% 50% no-repeat;
}

Try:

Ext.Msg.show({
    cls: "my-progress-class"
});

And define a CSS rule to show your custom "please wait" image:

.my-progress-class {
    background: url(image/wait.png) 50% 50% no-repeat;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文