我在Sitecore中有一个自定义体验按钮,用于引用自定义命令。从此上下文打开SPEAK对话框的正确方法是什么?如何设置对话框的宽度/高度?
我有以下命令代码:
public class MySpecialCommand : Sitecore.Shell.Applications.WebEdit.Commands.WebEditCommand
{
public override void Execute(Sitecore.Shell.Framework.Commands.CommandContext context)
{
var parameters = new NameValueCollection();
//add various parameters etc
Context.ClientPage.Start((object) this, "Run", parameters);
}
protected void Run(ClientPipelineArgs args)
{
if (!args.IsPostBack)
{
string url = "/sitecore/client/your%20apps/somespeakdialog?sc_lang=en&someParam" + args.Parameters["someParam"];
SheerResponse.ShowModalDialog(url, "100", "200", string.Empty, true);
args.WaitForPostBack();
}
else if (args.HasResult)
{
//not got this far yet...
}
}
}
我发现对话框的大小与传递给width
的{{1}}和height
参数没有任何相似之处。我也尝试传入以“px”为后缀的值,但这没有帮助。
答案 0 :(得分:3)
在Sitecore 7.5中没有开箱即用的设置基于SPEAK的对话框的宽度和高度的能力(它在8.0中可用)
但是,您可以自定义 \ sitecore \ shell \ Controls \ jQueryModalDialogs.html 文件。只需查找并更新以下if
声明:
if (isSpeakDialog) {
createdDialog.dialog('option', 'width', size.width);
createdDialog.dialog('option', 'height', size.height);
}
在Sitecore 8.0中添加了一种新方法:
public static ClientCommand ShowModalDialog(ModalDialogOptions options)
您的SheerResponse.ShowModalDialog(url, "100", "200", string.Empty, true);
将
SheerResponse.ShowModalDialog(new ModalDialogOptions(url)
{
Width = "100",
Height = "200",
Response = true,
ForceDialogSize = true
});
ForceDialogSize
属性的说明:
获取或设置一个值,指示SPEAK对话框是否会进入 acount< see cref =“Width”/>和<见cref =“Height”/>。