Kendo UIのMVCラッパーを使用していますが、ポップアップの幅を設定できません。私は2つの方法を試しましたが、どれも機能していません。これが私が試したことです:
.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ファイルにあります。