我正在使用Telerik MVC控件(组合框),我无法在视图加载时从模型中获取高亮显示的值。
<tr>
<td class="editor-label">
@Html.LabelFor(model => model.CategoryDescription)
</td>
<td class="editor-field">
@Html.DisplayFor(model => model.CategoryDescription)
</td>
<td>
@(Html.Telerik().ComboBoxFor(model => model.CategoryDescription)
.BindTo((SelectList)(Model.CategoryDescriptionList))//(SelectList)(ViewBag.CategoriesList))
.HtmlAttributes(new { style = "width:350px; white-space:nowrap;" })
.HighlightFirstMatch(true)
.Filterable(filtering => filtering.FilterMode(AutoCompleteFilterMode.Contains))
.ClientEvents(events => events.OnClose("ComboBox_OnClose"))
)
@Html.ValidationMessageFor(model => model.CategoryDescription)
</td>
</tr>
我希望Model.CategoryDescription中的值在页面加载时显示在Combobox中作为选定条目。所以问题是如何做到这一点。
回答。 当我在模型中构建selectList并将其位置用于控件时,我能够在控件上设置SelectedIndex。
答案 0 :(得分:0)
当我在模型中构建selectList并将其位置用于控件时,我能够在控件上设置SelectedIndex。