Hi,
I have a problem, with maintaining ScrollY position of ScrollView after RadBusyIndicator gets disabled:
I have following XAML structure:
<telerik:RadBusyIndicator>
<telerik:RadBusyIndicator.Content>
<ScrollView>
<StackLayout>
.....
</StackLayout>
</ScrollView>
</telerik:RadBusyIndicator.Content>
</telerik:RadBusyIndicator>
At the very end of StackLayout I have a button that triggers some action and RadBusyIndicator needs to be shown, but when RadBusyIndicator gets Disabled (IsBussy = false) ScrollView go to the very top without triggering Scrolled event in ScrollView.
How to persist scroll position when using RadBusyIndicator ?