我在与模型绑定的应用程序中使用 Kendo() 网格。我想在 Grid 中针对每一行提供 Upload 控件。请参阅剃须刀视图设计如下
@(Html.Kendo().Grid<Model>()
.Name("Grid")
.Columns(col =>
{
col.Template(@<text></text>).ClientTemplate("<a Title='Export' href='" + Url.Action("Export", "RouteFileExport", new { Id = "#= RouteScheduleID #", routeID = "#= RouteID #" }) + "'><img src=" + @Url.Content("~/Content/images/download.png") + "></a>").Title("Export");
col.Template(@<text>@(Html.Kendo().Upload()
.Name("attachments<#= ID #>")
.HtmlAttributes(new { id = "attachments<#= ID #>" })
.Multiple(false)
.Async(async => async
.Save("Save", "Controller", new { folder = "<#= ID #>" })
.AutoUpload(true)
)
)</text>).Title("Import");
col.Command(command =>
{
command.Destroy();
command.Custom("Unlock");
command.Custom("Notification");
}
);
})
使用上述设计,我无法在网格内显示上传控件。它显示空白列。
请让我知道如何实现对每个剑道网格行的上传。
谢谢