Enum PopupDisplayMode
Specifies the display mode of popup for dropdown components on mobile devices.
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum PopupDisplayMode
Remarks
This enumeration controls whether the popup appears with desktop-like inline placement or fullscreen on mobile screens, as in material design.
Examples
PopupDisplayMode mode = PopupDisplayMode.Inline;
Fields
| Name | Description |
|---|---|
| FullScreen | The popup opens in fullscreen mode on mobile devices, typically when filtering is enabled. |
| Inline | The popup opens similarly on both mobile and desktop devices, positioned above the input field and without entering fullscreen mode. |