Unplanned
Last Updated: 27 Jan 2023 14:04 by Giovanni Rojas

When the IsOpen is set initially to true, on iOS the main content overlay does not display:

Unplanned
Last Updated: 24 Aug 2021 11:02 by ADMIN
When Custom control with bindable property is added to the SideDrawer and OnBindingContextChanged is overridden inside the custom control -> OnBindingContextChanged is invoked after the OnPropertyChanged method. 
Unplanned
Last Updated: 14 Jan 2020 15:52 by ADMIN
I have come across some strange behaviour of the RadSideDrawer component. On Android, everything works fine. On iOS however, the side drawer opens only when navigated to the containing page for the first time. when we have a button inside the drawer content and navigate through it to another page, then back to page where sidedrawer is positioned, the drawer content could not be open.
Unplanned
Last Updated: 30 Jan 2019 08:00 by ADMIN
When you hold and move in the drawer content, in order to use the default gesture to close the sidedrawer in Android, the events do not propagate to the children elements in the content. 
Unplanned
Last Updated: 04 Sep 2018 11:15 by ADMIN
RadSideDrawer does not take correct size when the screen is resized/rotated.
Unplanned
Last Updated: 17 Jul 2018 12:50 by ADMIN
ADMIN
Created by: Lance | Manager Technical Support
Comments: 5
Category: SideDrawer
Type: Bug Report
2
Use the following code deployed to UWP to reproduce. Observe the following:

- Inability to interact with the Button (unless you move the button outside the invisible gesture detection area)
- Gestures are still active even though they're disabled

<telerikPrimitives:RadSideDrawer DrawerLength="400"
                                     AreGesturesEnabled="false"
                                     DrawerLocation="Bottom"
                                     DrawerTransitionType="SlideInOnTop"  
                                     DrawerTransitionDuration="0.2"
                                     IsOpen="False">
        <telerikPrimitives:RadSideDrawer.DrawerContent>
            <StackLayout VerticalOptions="FillAndExpand"
                         BackgroundColor="GreenYellow">
                <Label Text="DrawerContent"
                       VerticalOptions="FillAndExpand"/>
            </StackLayout>
        </telerikPrimitives:RadSideDrawer.DrawerContent>
        <telerikPrimitives:RadSideDrawer.MainContent>
            <Grid BackgroundColor="LightBlue">
                <Grid.RowDefinitions>
                    <RowDefinition Height="*"/>
                    <RowDefinition Height="Auto"/>
                </Grid.RowDefinitions>
                
                <Label Text="Demo"
                       VerticalOptions="Fill"/>
                
                <Button VerticalOptions="End"
                        HorizontalOptions="Fill"
                        Text="Click Me!"
                        Clicked="Button_OnClicked"
                        BackgroundColor="LightGray"
                        FontSize="12"
                        HeightRequest="20" 
                        Grid.Row="1"/>
            </Grid>
        </telerikPrimitives:RadSideDrawer.MainContent>
    </telerikPrimitives:RadSideDrawer>
Unplanned
Last Updated: 21 Jun 2018 13:34 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: SideDrawer
Type: Bug Report
0

			
Unplanned
Last Updated: 29 Mar 2018 11:51 by ADMIN
ADMIN
Created by: Lance | Manager Technical Support
Comments: 0
Category: SideDrawer
Type: Bug Report
5
If a SideDrawer has gestures enabled, you cannot scroll DrawerContent in the same direction as the drawer. For example a ListView in DrawerContent when DrawerLocation="Bottom"

If the SideDrawer only uses gestures that begin outside the drawer, then this would prevent the conflict.
Unplanned
Last Updated: 29 Mar 2018 11:51 by ADMIN
ADMIN
Created by: Lance | Manager Technical Support
Comments: 0
Category: SideDrawer
Type: Bug Report
1
If the MainContent of the RadSideDrawer contains a Xamarin Forms Entry control, and the user enters a space into theEntry with the spacebar, the RadSideDrawer's Drawer will open unintentionally.

Code to reproduce:

<telerikPrimitives:RadSideDrawer DrawerLength="200">
        <telerikPrimitives:RadSideDrawer.MainContent>
            <Grid>
                <Entry VerticalOptions="Center" HorizontalOptions="FillAndExpand"/>
            </Grid>
        </telerikPrimitives:RadSideDrawer.MainContent>
        <telerikPrimitives:RadSideDrawer.DrawerContent>
            <StackLayout VerticalOptions="Start">
                <Button Text="A button" />
            </StackLayout>
        </telerikPrimitives:RadSideDrawer.DrawerContent>
</telerikPrimitives:RadSideDrawer>
Unplanned
Last Updated: 19 Sep 2017 05:58 by ADMIN