Can this be done?
- start with a GridView
- wire up a details presenter containing a RadWindow
ExternalDetailsPresenter.DetailsProvider = EventGridView.RowDetailsProvider
<
GridView:DetailsPresenter x:Name="ExternalDetailsPresenter">
<telerikNavigation:RadWindow
WindowStartupLocation="CenterScreen">
<StackPanel>
<TextBlock Text="{Binding Id}" />
</StackPanel>
</telerikNavigation:RadWindow>
</GridView:DetailsPresenter>
Expected result: when detail is triggered, a new Window is displayed containing the StackPanel and TextBlock, bound to the row detail data.
Actual result: entire grid is replaced by gray "header" zone and black "content" zone.
As a bonus question: if this can be achieved, how can you control modal/not modal behavior of the window in this scenario?