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?
<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?
Hello Thomas,
It has been a while since you have made your post, in case you still need support I will be glad to assist you further. I suppose the other community members can benefit from this answer as well. I have been looking into your post I can say that the ExpandableRecordPresenter’s TemplateGridView Property’s type is ControlTemplate and this is why your behavior occurs. If you want to re-template it you can create a ControlTemplate instead of DataTemplate.
Feel free to write me if you have further questions.
i want to implement a row detail template, the template would have 3 tabs with some controls in each...
can some one send me sample code to achieve this, i am using igDP:XamDataGrid