我有一个 mvc kendo CombBox 声明为
var comboBox = Html.Kendo().ComboBox()
.Name("Combo")
.Placeholder("Select a val...")
.DataTextField("Description")
.DataValueField("Description")
.AutoBind(false)
.Filter(FilterType.Contains)
.DataSource(source => source
.Read(read => read.Action("XYZ", "ABC").Data("callList"))
.ServerFiltering(true)
)
.HtmlAttributes(new { style = "width:400px" });
有没有办法让替代项目有不同的css。
我在剑道文档中找不到任何东西。我也尝试过使用 JQuery,但失败了。谁能告诉我是否有解决方案。
谢谢。