通过jquery将值插入到dropdownlist telerik中

时间:2013-12-24 14:46:57

标签: jquery drop-down-menu telerik

我有一个观点

@(Html.Telerik().DropDownList().Name("InstrumentType").BindTo(Model.MITypesList).Enable(!Model.IsReadOnlyOtherProperties).HtmlAttributes(new { @class = "instrument-type" }))

如何将值插入输入字段?

所有这些都不起作用

$(".instrument-type input").val('bla-bla');
$("#InstrumentType input").val('bla-bla');
$("#InstrumentType").val('bla-bla');

2 个答案:

答案 0 :(得分:0)

如果输入的类是instrument-type,您将需要使用

$('.instrument-type').val('something'); 

您甚至可以$('input.instrument-type').val('something');

答案 1 :(得分:0)

我找到了http://www.telerik.com/help/aspnet-mvc/telerik-ui-components-combobox-client-api-and-events.html#select

var dropDown =  $("#InstrumentType").data("tDropDownList");
dropDown.select(arrayList.length - 1);