2

如何根据客户端发送的数据设置剑道 UI 下拉服务器端的值?

4

2 回答 2

3

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

于 2012-12-05T20:27:05.150 回答
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;
                }
于 2014-07-30T17:04:08.743 回答