Popup - is modal false not working

1 Answer 140 Views
Popup
Daniel
Top achievements
Rank 1
Silver
Bronze
Daniel asked on 22 Mar 2022, 02:18 PM

Hi,

Popup  - is modal false not working


telerikPrimitives:RadPopup.Popup >
    <telerikPrimitives:RadPopup x:Name="popupError" IsOpen="False"
                                  IsModal="False" 
                                  OutsideBackgroundColor="#6F000000"
                                            Placement='Center' >
        <telerikMauiControls:RadBorder CornerRadius="8"
                                         BackgroundColor="#03446a">

            <Grid Padding="20"
                                WidthRequest="200"
                                HeightRequest="170">
                <Grid.RowDefinitions>
                    <RowDefinition Height="40" />
                    <RowDefinition Height="70" />
                </Grid.RowDefinitions>
                <Button Grid.Row="0"
                                    Padding="2"
                                   HorizontalOptions="End"
                                   Text="X"
                                   Clicked="OnClosePopup" 
                                  BackgroundColor="#03446a" TextColor="White" />
                <Label x:Name="labelError" Grid.Row="1" Text="" TextColor="White"/>
            </Grid>
        </telerikMauiControls:RadBorder>
    </telerikPrimitives:RadPopup>
</telerikPrimitives:RadPopup.Popup>

1 Answer, 1 is accepted

Sort by
0
Lance | Manager Technical Support
Telerik team
answered on 22 Mar 2022, 02:56 PM

Hi Daniel,

This is the same issue we had discussed in the other thread. The problem is not with "modal" it is with the RadPopup itself. The development team is aware of this and are working on it for a future release (the fix will not make it in time for v0.6.0).

Right now, the only solution is to do what I showed you in the other thread (using IsVisible and Grid) or by not using a RadPopup on MainPage.

Regards,
Lance | Manager Technical Support
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Tags
Popup
Asked by
Daniel
Top achievements
Rank 1
Silver
Bronze
Answers by
Lance | Manager Technical Support
Telerik team
Share this question
or