This is a migrated thread and some comments may be shown as answers.

[Solved] Combobox inside Grid editor template always shows value not text

0 Answers 121 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Vladimir
Top achievements
Rank 2
Vladimir asked on 08 Oct 2012, 12:53 PM
I have the following editor template in grid which is in cell editing mode:
@(Html.Telerik().ComboBoxFor(m => m)
    .DataBinding(binding =>
        binding.Ajax()
        .Select("GetSkuList", "Home"))
    .Filterable(filtering => filtering.FilterMode(AutoCompleteFilterMode.Contains))
    .ClientEvents(events => events
        .OnDataBinding("SkuList_OnDataBinding"))
)
When I choose an item from list combobox displays its value instead of its text.
Outside the grid all works fine.
Please any help!
Tags
ComboBox
Asked by
Vladimir
Top achievements
Rank 2
Share this question
or