为什么 Kendo UI 上传模板中有两个相似的操作按钮?
Why are there two similar action buttons in Kendo UI Upload template?
来自KendoUIAPI参考:"To render an action button for each file, add the following markup to the template: <button type='button' class='k-upload-action'></button><button type='button' class='k-upload-action'></button>
"
https://docs.telerik.com/kendo-ui/api/javascript/ui/upload/configuration/template
谁能解释一下,为什么标记中有两个相似的按钮?
查看源代码(需要 Telerik 的许可),这些按钮根据场景具有不同的功能:
- 重试
- 删除
- 暂停
- 取消
可以同时使用暂停和取消(如果设置了 async.chunkSize
),或者在出现错误时可以同时显示重试和删除。
来自KendoUIAPI参考:"To render an action button for each file, add the following markup to the template: <button type='button' class='k-upload-action'></button><button type='button' class='k-upload-action'></button>
"
https://docs.telerik.com/kendo-ui/api/javascript/ui/upload/configuration/template
谁能解释一下,为什么标记中有两个相似的按钮?
查看源代码(需要 Telerik 的许可),这些按钮根据场景具有不同的功能:
- 重试
- 删除
- 暂停
- 取消
可以同时使用暂停和取消(如果设置了 async.chunkSize
),或者在出现错误时可以同时显示重试和删除。