我正在使用 Kendo UI 的 MVC Wrappers,我无法设置弹出窗口的宽度。我已经尝试了两种方法,但都没有奏效。这是我尝试过的:
.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 文件中找到。