Unplanned
Last Updated: 29 Mar 2018 11:51 by ADMIN
ADMIN
Lance | Manager Technical Support
Created on: 04 Apr 2017 20:05
Category: SideDrawer
Type: Bug Report
1
SideDrawer: [UWP] Spacebar opens on SideDrawer
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>
0 comments