如何使Telerik Combobox显示模型中与SelectList中的值对应的字段中的值?

时间:2012-05-10 16:52:29

标签: razor telerik-mvc asp.net-mvc-3-areas

我正在使用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.CategoryDe​​scription中的值在页面加载时显示在Combobox中作为选定条目。所以问题是如何做到这一点。

回答。 当我在模型中构建selectList并将其位置用于控件时,我能够在控件上设置SelectedIndex。

1 个答案:

答案 0 :(得分:0)

当我在模型中构建selectList并将其位置用于控件时,我能够在控件上设置SelectedIndex。