是否有人能够通过单击 Dynamics CRM 2011 (On-Premise) 功能区中的按钮来打开 Silverlight 对话框?我知道您只能从功能区调用 javascript、html 或 Outlook,但甚至无法启动在我的 Silverlight 项目中生成的 html 页面。
问问题
1399 次
2 回答
1
您可以通过以下方式直接从功能区打开 Silverlight 对话框:
<Actions>
<Url Address="$webresource:new_/SilverlightFromRibbonTestPage.html" PassParams="true"></Url>
</Actions>
于 2011-10-12T20:05:18.980 回答
0
您是否尝试在指向您的 Silverlight 应用程序的 JScript 中放置一个 window.open?
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?
于 2011-06-05T20:07:29.360 回答