Hello,
currently I'm experimenting with RadDataGrids and stumbled on the issue that the scrollbar on UWP is blocking the content (including the options button which is also not clickable because of it, screenshot is attached).
Looks like inputtransparent=true and cascadeinputtransparent=false on the scrollbar within the DataGrids is missing or something like that
Code Snippet (screenshot is attached):
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<dataGrid:RadDataGrid Grid.Column="0" Grid.RowSpan="2"
ItemsSource="{Binding Resources}"
AutoGenerateColumns="True"
UserEditMode="Cell"
>
</dataGrid:RadDataGrid>
<Label Grid.Column="1" Grid.Row="0" Text="Placeholder for future adventures 🦄." BackgroundColor="PaleTurquoise"/>
<dataGrid:RadDataGrid Grid.Column="1"
Grid.Row ="1"
ItemsSource="{Binding Resources}"
AutoGenerateColumns="True"
UserEditMode="Cell"
>
</dataGrid:RadDataGrid>
</Grid>