0
我使用與它定義的自定義按鈕劍道電網如下如何在自定義按鈕打開劍道窗口
@(Html.Kendo().Grid((IEnumerable<AdjustmentModel >)ViewBag.Adjustments)
.Name("AdjustmentsGrid")
.DefaultConfiguration()
.HtmlAttributes(new { style = "height=100%" })
.ToolBar(toolbar => {
toolbar.Custom().Text("Search");
toolbar.Custom().Text("Apply Adjustment");
toolbar.Custom().Text("Clear");
})
我想在「應用調整」按鈕打開一個窗口劍道。如何實現它? 如何在Kendo窗口上提供網格?
請讓我知道。
謝謝。