在Kendo Drop Down中设置初始值

时间:2012-12-05 11:00:27

标签: c# kendo-ui

如何设置kendo UI下拉服务器端的值,具体取决于客户端发送的数据?

2 个答案:

答案 0 :(得分:3)

您可以使用value设置来设置最初选择的值。

答案 1 :(得分:0)

你可以这样试试

       if ($(this).parent().hasClass("k-widget k-dropdown k-header")) {

                    var combo = $(this).data("kendoDropDownList");
                    combo.select(4); // set the value to this index item
                    break;
                }