如何根据客户端发送的数据设置剑道 UI 下拉服务器端的值?
问问题
3511 次
您可以使用值设置来设置最初选择的值。
你可以试试这种方式
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;
}