I have a telerik GridView with a GridViewComboBoxColumn - this control is empty until i click on an item in that column. Once I click on that column these values appear.

<telerik:GridViewComboBoxColumn Header="Currency Quality" EditTriggers="CellClick" 
ItemsSource="{Binding Path=CurrencyQualityList, Source={StaticResource mainPageViewModel}}" 
SelectedValueMemberPath="DisplayText" 
DataMemberBinding="{Binding CurrencyQuality, Mode=TwoWay}" DisplayMemberPath="DisplayText">
</telerik:GridViewComboBoxColumn>

I read that at the top of my page to put this in.

<UserControl.Resources>
    <local:SearchRedemptionDetailViewModel x:Key="mainPageViewModel" />
</UserControl.Resources>

I am using an MVVM framework - I have an observable collection of type LookupValue in my ViewModel. The source for my combobox is CurrencyQualityList. My lookup value has two properties, DisplayText and Value -

Even with these changes I still am unable to get the values to display.

link|improve this question

feedback

3 Answers

Set the CellTemplate on the column to be the following.

<telerik:GridViewComoBoxColumn.CellTemplate>
    <DataTemplate>
        <TextBlock Text="{Binding Path=CurrencyQuality.DisplayText}"/>
    </DataTemplate>
</telerik:GridViewComoBoxColumn.CellTemplate>
link|improve this answer
That did not help out...any other ideas would be appreciated.. – gevjen Jun 21 '11 at 20:18
What type is CurrencyQuality? Is it the same type as the objects in CurrencyQualityList? – cadrell0 Jun 22 '11 at 12:56
feedback

Maybe this will help someone, it is a solution we implemented on a Silverlight project I worked on which had the same problem with the ComboBox GridView Column (Telerik).

I just thought this would be faster for me, rather than try to find out what was not correct in the view model since it works in all the other spots.

Basically code change consists of 1. Add two classes and 2. change your Xaml to reference the custom column instead of Telerik's. It's kind of long so I put it up as a blog post. Custom GridViewComboBoxColum for Telerik

link|improve this answer
feedback

Solution!!! Even I has the same issue but I got a workaround of it. We need to set the data source of the grid once we complete binding of the GridViewComboBoxColumn.

Sample code:

void BaseGridUserControl_LoadComboBoxColumns()
    {
        MYDomainContext myDomainContext =
                                        new MYDomainContext();
        #region Bind to Grade Code Column
        GridViewComboBoxColumn gradeCodeColumn =
              (GridViewComboBoxColumn)BaseGridUserControl.BaseGridControl.Columns["GRADE_ID"];

            if (gradeCodeColumn != null)
            {
                myDomainContext.Load(myDomainContext.GetGradesByBlockedQuery());
                gradeCodeColumn.ItemsSource = myDomainContext.GRADEs;
                gradeCodeColumn.DisplayMemberPath = "Grade_Desc";// +" " + "Grade_Description";
                gradeCodeColumn.SelectedValueMemberPath = "Grade_ID";
            }
        #endregion

       //Set the grid's data source here
       SetParentDataSource();

    }

I posted this query to Telerik but dont get good answered.

Please let me know if that works for you.

Thanks

Raj

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.