gpt4 book ai didi

c# - 简单的剑道 UI 按钮

转载 作者:行者123 更新时间:2023-11-30 22:09:32 25 4
gpt4 key购买 nike

对于 asp.net mvc4 网站,有没有一种方法可以将 Kendo UI 用于一个简单的按钮?这不是一个移动应用程序。但是 Kendo UI 似乎没有像 Html.Kendo().Button... 这样的常规按钮对象。

这是我现在拥有的

<input type="submit" value="Run Calculation" />

我想改用 Kendo UI 按钮。

@(Html.Kendo().MobileButton()
.Name("textButton")
.HtmlAttributes( new {type = "button"} )
)

但它根本没有渲染。

最佳答案

如果您无法访问 Html.Kendo().Button(),则表示您的 kendo ui mvc 版本不是 2013 Q3 或更高版本。

新代码应该是这样的:

@(Html.Kendo().Button()
.Name("textButton")
.HtmlAttributes( new {type = "button"} )
.Content("Text button"))

演示:Button / Basic usage -> ASP.NET MVC -> index.cshtml

关于c# - 简单的剑道 UI 按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21515653/

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