我使用Kendo UI的MVC包装器,我无法设置弹出窗口的宽度.我尝试了两种方法,没有一种方法正在运行.这是我试过的:
.Editable(edit => edit.Mode(GridEditMode.Popup) .TemplateName("Create") .Window(w => w.Title("Add Interruption") .Name("addInterruption") .Width(700)))
和
.Editable(edit => edit.Mode(GridEditMode.Popup) .TemplateName("Create") .Window(w => w.Title("Add Interruption") .Name("addInterruption") .HtmlAttributes(new { style="width:700px;" })))
高度也不行.
如何设置弹出窗口的宽度?
谢谢!
更新:
对于其他人来说,这是修复:
.k-edit-form-container { width: auto;}
这在kendo.common.min.css文件中找到.