我正在使用 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 中的值在页面加载时作为所选条目显示在组合框中。所以问题是如何做到这一点。
回答。当我在模型中构建 selectList 并将其位置用于控件时,我能够在控件上设置 SelectedIndex。