New to Telerik UI for .NET MAUIStart a free 30-day trial

TimePicker, DatePicker, and ComboBox DropDown Not Displaying Correctly in Toolkit Popup

Updated on Jan 19, 2026

Environment

ProductAuthor
Telerik UI for .NET MAUI ComboBoxDobrinka Yordanova
Telerik UI for .NET MAUI AutoCompleteDobrinka Yordanova
Telerik UI for .NET MAUI PickersDobrinka Yordanova
Telerik UI for .NET MAUI PopupDobrinka Yordanova

Description

In my .NET MAUI app, TimePicker, DatePicker, ComboBox dropdown, and other pickers' popups do not display correctly on iOS and Mac when placed inside Mopups or CommunityToolkit Popups. Instead, they either render behind the popup or fail to display at all. Previously, adjustments allowed proper rendering on top of everything, but the behavior persists due to nested popup limitations.

Cause

The issue occurs because Telerik controls like TimePicker, ComboBox, and other pickers rely on RadPopup to render their dropdowns and popups. When these controls are nested inside Mopups or CommunityToolkit Popups, rendering issues arise due to conflicting popup layers. This limitation is documented in a logged item on Telerik's feedback portal.

Solution

To resolve the issue, use a modal page instead of Mopups or CommunityToolkit Popups for presenting content. Modal pages do not experience the clipping and rendering issues associated with nested popups. Follow these steps:

1. Define a button to open the modal page.

xaml
<Grid RowDefinitions="Auto">
	<telerik:RadButton Text="Open Popup"
						Clicked="RadButton_Clicked" />
</Grid>

2. Handle the button click to open the modal page.

c#
private async void RadButton_Clicked(object sender, EventArgs e)
{
	var modalPage = new MyAutoCompletePopup();
	await this.Navigation.PushModalAsync(modalPage);
}

3. Create the modal page as a ContentPage to host the controls.

xaml
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
			 xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
             x:Class="MauiApp.MyAutoCompletePopup"
			 BackgroundColor="#80000000"
             Title="MyAutoCompletePopup">
	<Grid VerticalOptions="Center" HorizontalOptions="Center">
		<telerik:RadBorder Padding="20"
                           WidthRequest="300"
                           HeightRequest="500"
                           BackgroundColor="White"
                           CornerRadius="12">

			<VerticalStackLayout Spacing="15">
				<telerik:RadAutoComplete x:Name="autoComplete" Placeholder="Search here..."/>

				<Button Text="Ok"
                        Clicked="OnOkClicked"
                        HorizontalOptions="Center" />
			</VerticalStackLayout>
		</telerik:RadBorder>
	</Grid>
</ContentPage>

Replace RadAutoComplete and other controls as needed for your application's functionality.

See Also