当sitecore后端显示向导表单时,如何设置默认表单高度?目前默认的弹出窗体不够高。
答案 0 :(得分:2)
string width = "208px”;
string height = "190px”;
Context.ClientPage.ClientResponse.ShowModalDialog("/sitecore/shell/~/xaml/your.custom.xaml.aspx", width, height, String.Empty, true);
模态对话框大小正在用户个人资料中保留,因此在测试时,请与不同的用户一起登录。
希望这有帮助