Kendo UI网格行中弹出窗口中的文件附件

问题描述 投票:0回答:1

是否可以在弹出窗口中为网格行添加文件附件?而不是文件名 - “文件附件”

enter image description here

kendo-ui kendo-grid
1个回答
0
投票

为此,您可以使用自定义模板进行编辑。

你可以使用这样的东西:

editable: {
    mode: "popup",
    template: kendo.template($("#popup-editor").html())
  }

您可以在弹出编辑器元素https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/editable.template中构建自己的表单

© www.soinside.com 2019 - 2024. All rights reserved.