У меня есть этот код, как я могу установить свойство Value для первого элемента в DataSource?
@(Html.Kendo().ComboBox()
.Name("cboShip")
.Placeholder("Select Ship...")
.Filter(FilterType.Contains)
.DataTextField("ShipName")
.DataValueField("ShipId")
.DataSource(s =>
{
s.Read(read => { read.Action("GetShips", "Filter"); });
})
.Events(events => events.Change("cboShipMultiChange"))
.Value('' /*????? I want to get the first element from the DataSource and use it in here*/)
)