or
<telerik:RadComboBox ItemsSource="{Binding Items}" SelectedItem="{Binding SelectedItem}" DisplayMemberPath="Name" IsFilteringEnabled="True" TextSearchMode="Contains" ClearSelectionButtonVisibility="Visible" ClearSelectionButtonContent="Remove"> <telerik:RadComboBox.ItemsPanel> <ItemsPanelTemplate> <VirtualizingStackPanel/> </ItemsPanelTemplate> </telerik:RadComboBox.ItemsPanel></telerik:RadComboBox><telerik:RadButton Content="Export" Height="40" Width="50" Command="{Binding ExportCommand, Source={StaticResource context}}" CommandParameter="{Binding}" /><telerik:RadButton Content="Print" Height="20" Width="50" Command="{Binding PrintCommand, Source={StaticResource context}}" CommandParameter="{Binding}" />
Public ReadOnly Property Children As IQueryable(Of BaseLimb) Get Return pGrouper.Children.Select(Function(e) e.Owner).AsQueryable End GetEnd PropertyI had other problems when I just may it an IEnumerable. Is there some else I should be doing to make the change immediate?

Second implementation
The button in the Cell Template is IsEnabled = False and the one in the CellEdit is IsEnabled=true.
In this scenario, when we click on the disabled button on row #2, the validation of row #1 is triggered. The focus on row #2 is set only when row #1 is valid.
However, on row #2 when the Cell Edit template is shown, the focus is set to the first control (Textbox)...
In the second approach, there are 2 problems: 1 - The "click" is not sent to the "Cell Edit" button AND 2 - the "Cell" button is disabled (at first, the user thinks that the button is not accessible.
--------------------------------------------
With that in mind, is there a way to this :
Thanks.
-----------------------------------------------------