Hello,
I'm using RadGridView with ComboBoxColumns and RowDetailsTemplate like this :
Everything works great including editing rows with ComboBoxColumns, but there is a little problem - after I expand specific row, I'm not able to edit that row with ComboBoxColumn anymore (even If I've collapsed it) - there's a red rectangle around - seems like a validation that stops me.
I'm using 2010 Q2 SP2 and LINQ datasources as listed below:
Thanks for any help
I'm using RadGridView with ComboBoxColumns and RowDetailsTemplate like this :
<telerik:RadGridView.Columns> <telerik:GridViewToggleRowDetailsColumn></telerik:GridViewToggleRowDetailsColumn> <telerik:GridViewComboBoxColumn Name="PositionCombo" Header="Position" DataMemberBinding="{Binding Path=PositionID , Mode=TwoWay}" DisplayMemberPath="Name" SelectedValueMemberPath="ID" /> <telerik:GridViewComboBoxColumn Name="StatesCombo" Header="State" DataMemberBinding="{Binding Path=StateID , Mode=TwoWay}" DisplayMemberPath="Name" SelectedValueMemberPath="ID" /> </telerik:RadGridView.Columns> <telerik:RadGridView.RowDetailsTemplate> <DataTemplate> </DataTemplate> </telerik:RadGridView.RowDetailsTemplate>Everything works great including editing rows with ComboBoxColumns, but there is a little problem - after I expand specific row, I'm not able to edit that row with ComboBoxColumn anymore (even If I've collapsed it) - there's a red rectangle around - seems like a validation that stops me.
I'm using 2010 Q2 SP2 and LINQ datasources as listed below:
DataClassesDataContext db = new DataClassesDataContext(); this.CandidatesGrid.ItemsSource = new QueryableCollectionView(db.Candidates); ((GridViewComboBoxColumn)this.CandidatesGrid.Columns[1]).ItemsSource = db.Positions; ((GridViewComboBoxColumn)this.CandidatesGrid.Columns[2]).ItemsSource = db.States; Thanks for any help