Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
25
Overwriting ExpandableFieldRecordPresenterStyle
posted

Hello

I am trying to implement my custom row details template, however i seem to not be able to achieve anything with this code:

Fieldsettings:

<igDP:FieldSettings
ExpandableFieldRecordExpansionMode="Default"
ExpandableFieldRecordPresenterStyle="{StaticResource RowDetailsStyle}"
>
</igDP:FieldSettings>

and my window resources:

<DataTemplate x:Key="RowDetailsTemplate">
<TextBlock>Worked</TextBlock>
</DataTemplate>
 
<Style x:Key="RowDetailsStyle" TargetType="{x:Type igDP:ExpandableFieldRecordPresenter}">
<Setter Property="TemplateGridView" Value="{StaticResource RowDetailsTemplate}" />
</Style>

Anybody notice the error?