gpt4 book ai didi

kendo-ui - 如何在 asp.net mvc 中禁用剑道编辑器

转载 作者:行者123 更新时间:2023-12-04 16:53:34 25 4
gpt4 key购买 nike

如何禁用剑道编辑器或使其只读?我尝试使用 HTML 属性但没有运气(或者我仍然做对了)

                    @(Html.Kendo().Editor()
.Name("Text")
.Value(@detail.SRoomInformation)
.Tools(tools => tools.Clear())
)

最佳答案

如果您想知道为什么没有诸如启用/禁用之类的选项 - 因为 html 可以简单地显示为 html 或文本 - 不需要编辑器提供的所有工具,并且使用此类小部件毫无意义。编辑器意味着它可以帮助您编辑;)

如果你真的想禁用它,你可以在初始化编辑器后使用以下代码行

例如

@Html.Kendo().Editor().Name("test")


<script type="text/javascript">
$(function () {
$($('#test').data().kendoEditor.body).attr('contenteditable', false)
})
</script>

关于kendo-ui - 如何在 asp.net mvc 中禁用剑道编辑器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15182896/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com