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

IsEditable on GridViewComboBoxColumn

1 Answer 68 Views
GridView
This is a migrated thread and some comments may be shown as answers.
None
Top achievements
Rank 1
None asked on 07 Apr 2014, 06:24 PM
 I am using the following CellTemplate because I need the IsEditable property for the combo box:


<telerik:GridViewDataColumn Width="100" >
                    <telerik:GridViewColumn.CellTemplate>
                        <DataTemplate>
                            <ComboBox DisplayMemberPath="Name"  SelectedValuePath="ID" SelectedValue="{Binding CountryID, Mode=TwoWay}" ItemsSource="{Binding Countries, Source={StaticResource CountriesList}}" />
                        </DataTemplate>
                    </telerik:GridViewColumn.CellTemplate>
                </telerik:GridViewDataColumn>

My issue is that now my OnRowEditEndedCommandCommandExecuted event does not run, and I do not know how to get it to run when the normal combo box is edited to update the correct row. Any ideas? Thank you.

1 Answer, 1 is accepted

Sort by
0
None
Top achievements
Rank 1
answered on 07 Apr 2014, 06:27 PM
Nevermind. I see that "IsComboBoxEditable="true"" was added. Sorry.
Tags
GridView
Asked by
None
Top achievements
Rank 1
Answers by
None
Top achievements
Rank 1
Share this question
or