如何在 umbraco 中通过 javascript 呈现自定义保存消息气球

发布于 2024-10-29 21:32:20 字数 156 浏览 1 评论 0原文

您知道保存文档时弹出的小消息气球吗?我想在我的自定义部分中展示这一点。我发现我可以让我的页面继承 UmbracoEnsuredPage 并使用 ClientTools.ShowSpeechBubble。问题是我需要能够从客户端的 javascript 显示它。

有人知道该怎么做吗?

You know that little message balloon that pops up when you save a document? I want to show that in my custom section. I see that I can make my page inherit from UmbracoEnsuredPage and use ClientTools.ShowSpeechBubble. The problem is that I need to be able to display it from javascript on the client side.

Anyone know how to do that?

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

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

发布评论

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

评论(1

靑春怀旧 2024-11-05 21:32:20

umbraco 论坛上的 Lee Kelleher 能够回答这个问题。 http://our.umbraco .org/forum/developers/api-questions/19190-Custom-save-message-balloon-from-javascript

这是代码

UmbClientMgr.mainWindow().UmbSpeechBubble.ShowMessage('info', 'This is the header', 'This is the body text.');

Lee Kelleher over at umbraco's forum was able to answer this. http://our.umbraco.org/forum/developers/api-questions/19190-Custom-save-message-balloon-from-javascript

Here is the code

UmbClientMgr.mainWindow().UmbSpeechBubble.ShowMessage('info', 'This is the header', 'This is the body text.');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文