The Grid is having two columns which are using two cell templates and not using any RowDetails template.
While adding a new row, i need to click on "+" button and need to click again on the left end of the row to see the expanded row with loaded cell templates.
But i want to achieve with only single click "+" to add a expanded row.
Below is the code snippet used for the grid:
<views:RadGridView x:Name="datasource" Grid.Row="1" ItemsSource="{Binding Path=DataSource.StructuredParties}"
Margin="5" AutoGenerateColumns="False" ShowGroupPanel="False" IsFilteringAllowed="False"
CanUserSortColumns="False" VerticalAlignment="Top" ShowInsertRow="True"
SelectedItem="{Binding SelectedPartyModel}" KeyboardNavigation.TabNavigation="Continue"
CellEditEnded="FwAbstractEntityGridView_CellEditEnded" Deleting="FwAbstractEntityGridView_Deleting">
<views:RadGridView.Columns>
<views:RadGridViewDataColumn
Header="{x:Static Resources:OcrMessages.PartyTypeColumnHeader}"
DataMemberBinding="{Binding Converter={StaticResource partyNameConverter}}"
CellTemplate="{StaticResource DataEditTemplate}" Width="*" />
<views:RadGridViewDataColumn Header="{x:Static Resources:OcrMessages.PartySharePortionColumnHeader}"
DataMemberBinding="{Binding GroupShare, Converter={StaticResource zeroNumberConverter}}"
CellTemplate="{StaticResource SharePortionEditTemplate}" Width="Auto" />
</views:RadGridView.Columns>
</views:RadGridView>