从 Crm 2011 中的功能区打开 Silverlight 对话框

发布于 2024-11-12 08:58:50 字数 152 浏览 2 评论 0原文

有人能够通过单击 Dynamics CRM 2011 (On-Premise) 中功能区中的按钮来打开 Silverlight 对话框吗?我知道您只能从功能区调用 javascript、html 或 Outlook,但甚至无法启动我的 Silverlight 项目中生成的 html 页面。

Has anybody been able to open a Silverlight dialog by clicking on a button from the ribbon in Dynamics CRM 2011 (On-Premise) ? I understand that you can only call a javascript, html or outlook from the ribbon but haven't been able to launch even the html page generated in my Silverlight project.

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

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

发布评论

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

评论(2

挖个坑埋了你 2024-11-19 08:58:50

您可以通过以下方式直接从功能区打开 Silverlight 对话框:

<Actions>
 <Url Address="$webresource:new_/SilverlightFromRibbonTestPage.html" PassParams="true"></Url>
</Actions>

You can open the Silverlight dialog directly from the ribbon in this way:

<Actions>
 <Url Address="$webresource:new_/SilverlightFromRibbonTestPage.html" PassParams="true"></Url>
</Actions>
绿萝 2024-11-19 08:58:50

您是否尝试过在 JScript 中放置一个指向 Silverlight 应用程序的 window.open ?

window.open("http://www.MySilverlightUrl.com","MySilverlightApp");

我有点困惑,因为你提到它是一个 Silverlight 对话框。这与 CRM 2011 对话框(用户驱动的工作流程)或您所说的自定义应用程序有任何联系吗?

Have you tried placing a window.open in your JScript that points to your Silverlight app?

window.open("http://www.MySilverlightUrl.com","MySilverlightApp");

I'm a little confused because you mention its a Silverlight dialog. Does this have any connection with the CRM 2011 dialogs (user-driven workflow) or just what you call the custom application?

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