Найти ниже с помощью Telerik
C # Бритва
<div class="row">
<div class="col-md-8">
@(Html.Kendo().DropDownList()
.Name("color")
.DataTextField("Text")
.DataValueField("Value")
.Events(e => e.Change("change"))
.BindTo(new List<SelectListItem>() {
new SelectListItem() {
Text = "Black",
Value = "1"
},
new SelectListItem() {
Text = "Orange",
Value = "2"
},
new SelectListItem() {
Text = "Grey",
Value = "3"
}
})
.Value("1")
.HtmlAttributes(new { style = "width: 100%" })
)
</div>
<div class="col-md-4">
@Html.Kendo().TextBox().Name("txtColor")
</div>
</div>
Сценарий
<script>
function change() {
$("#txtColor").val($("#color").val());
}
</script>