Unplanned
Last Updated: 16 Nov 2018 14:50 by Dev
ADMIN
Created by: Nikolay Demirev
Comments: 1
Category: SideDrawer
Type: Feature Request
5
On UWP this can be achieved if you set double.NaN as a value of the DrawerLength property and on Android this achieved by setting 0 as a value of the DrawerLength property. On iOS is not supported at all.
Unplanned
Last Updated: 29 Mar 2018 11:51 by ADMIN
ADMIN
Created by: Lance | Senior 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: 09 Oct 2020 14:42 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 3
Category: SideDrawer
Type: Feature Request
3

			
Unplanned
Last Updated: 17 Jul 2018 12:50 by ADMIN
ADMIN
Created by: Lance | Senior 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: 26 Oct 2018 13:51 by ADMIN
When using a AreGesturesEnabled = true, stop the length of the drawer at location of releasing the Gesture.
Then allow the user to cover the drawer with the entire screen.
Unplanned
Last Updated: 29 Mar 2018 11:51 by ADMIN
ADMIN
Created by: Lance | Senior 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
Unplanned
Last Updated: 26 Feb 2019 09:23 by ADMIN
Created by: Brian
Comments: 1
Category: SideDrawer
Type: Feature Request
1
I would like to have an offset property for when the drawer is closed. The reason for this is we want to have a mapview with an expandable drawer at the bottom, but when it is "closed" it is still partially visible in order to have a less detailed version of the information that is inside the "opened" version of the drawer.
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: 21 Jun 2018 13:34 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: SideDrawer
Type: Bug Report
0

			
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: 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: 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: 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: