EnumAdaptiveMode
Defines how dropdown components adapt their behavior and appearance across different devices and screen sizes. Controls whether components automatically switch between desktop and mobile optimized layouts based on the user's device and viewport.
Definition
Namespace:Telerik.Blazor
Assembly:Telerik.Blazor.dll
Syntax:
public enum AdaptiveMode
Fields
Auto
Automatically detects the user's device and viewport size to choose the most appropriate layout and interaction mode. Uses desktop mode with standard dropdown popups for mouse-based devices and larger screens. Uses mobile mode with bottom sheet overlays for touch-based devices and smaller screens. Recommended for responsive applications that need to provide optimal user experience across all platforms and devices.
None
Always uses the desktop layout and interaction mode regardless of device type or screen size. Displays standard dropdown popups below the input field with mouse-optimized scrolling and selection. Use when you want consistent desktop-style behavior even on mobile devices, or when targeting desktop-only applications. May result in suboptimal user experience on touch devices due to smaller touch targets and popup positioning.