Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
syncfusion avatar

Syncfusion Blazor Popups

  • 254 installs
  • 4 repo stars
  • Updated July 28, 2026
  • syncfusion/blazor-ui-components-skills

Use syncfusion-blazor-popups for development tasks

About

syncfusion-blazor-popups: A skill for development. This provides functionality for development workflows.

  • syncfusion-blazor-popups

Syncfusion Blazor Popups by the numbers

  • 254 all-time installs (skills.sh)
  • +14 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #1,515 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/syncfusion/blazor-ui-components-skills --skill syncfusion-blazor-popups

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs254
repo stars4
Last updatedJuly 28, 2026
Repositorysyncfusion/blazor-ui-components-skills

What it does

Use syncfusion-blazor-popups for development tasks

Files

SKILL.mdMarkdownGitHub ↗

Implementing Syncfusion Blazor Popups

Dialog

The Syncfusion Blazor Dialog component provides a flexible, feature-rich solution for creating modal and modeless dialogs in Blazor applications. Dialogs are essential UI elements for displaying alerts, confirmations, forms, and interactive content overlaid on the main application.

Component Overview

The Dialog component supports:

  • Template-based layouts (header, content, footer with custom HTML/components)
  • Multiple interaction modes (modal and modeless)
  • Rich event system (lifecycle, drag, resize, overlay interactions)
  • Advanced positioning (fixed, absolute, relative, centered)
  • Interactive features (draggable, resizable, minimize/maximize buttons, fullscreen mode)
  • Accessibility support (WCAG compliance, keyboard navigation, ARIA attributes)
  • Animations (open/close transitions)
  • State management (visible binding, state persistence)

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Installation and NuGet package setup
  • Blazor WebAssembly and Server project configuration
  • Adding namespaces and Syncfusion services
  • Basic dialog implementation
  • CSS imports and theme configuration
  • Displaying header, content, and setting visibility
Templates and Content Customization

📄 Read: references/templates.md

  • Header template with custom HTML and icons
  • Content template with forms and Blazor components
  • Footer template and custom buttons
  • DialogTemplates structure
  • Embedding complex UI elements in dialogs
Dialog Buttons

📄 Read: references/dialog-buttons.md

  • DialogButton component configuration
  • Button placement and click handlers
  • Using DialogButtons vs FooterTemplate
  • Standard button patterns and common use cases
Events and Interactions

📄 Read: references/events.md

  • Lifecycle events (Created, Destroyed)
  • Opening and closing events (OnOpen, Opened, OnClose, Closed)
  • Drag events (OnDragStart, OnDrag, OnDragStop)
  • Resize events (OnResizeStart, Resizing, OnResizeStop)
  • Modal overlay interactions (OnOverlayModalClick)
Positioning and Visibility

📄 Read: references/positioning-visibility.md

  • Position property (fixed, absolute, relative)
  • Visible binding for show/hide control
  • Target element configuration
  • Dialog centering on page
  • Width and height configuration
  • Z-index management
Dialog Behavior and Features

📄 Read: references/dialog-behavior.md

  • Modal vs modeless dialogs
  • AllowDragging and EnableResize properties
  • AllowPrerender for performance optimization
  • ShowCloseIcon configuration
  • Creating nested dialogs
  • Animation support
  • IsModal and overlay behavior
Methods and Programmatic Control

📄 Read: references/methods.md

  • ShowAsync() to open dialogs programmatically
  • ShowAsync(true) to open dialogs in fullscreen mode
  • HideAsync() to close dialogs programmatically
  • GetDimension() to retrieve dialog size
  • GetButton(index) and GetButtonItems() for button access
  • RefreshPositionAsync() for position recalculation
  • Complete control examples
Advanced Customization and Styling

📄 Read: references/advanced-customization.md

  • CSS class customization and styling
  • Appearance customization
  • Accessibility features (WCAG compliance, keyboard navigation)
  • Animation configurations
  • State persistence strategies with EnablePersistence
  • Minimize/Maximize button implementation
  • Localization support
  • Responsive dialog design

Quick Start

Basic Dialog
@using Syncfusion.Blazor.Popups

<SfDialog Width="300px" Header="Welcome">
    <DialogTemplates>
        <Content>This is a basic dialog with content.</Content>
    </DialogTemplates>
</SfDialog>
Dialog with Show/Hide Control
@using Syncfusion.Blazor.Popups
@using Syncfusion.Blazor.Buttons

<div id="target">
    <SfButton OnClick="@OpenDialog">Open Dialog</SfButton>
    
    <SfDialog Target="#target" Width="400px" Header="Confirmation" 
              ShowCloseIcon="true" @bind-Visible="IsVisible">
        <DialogTemplates>
            <Content>Are you sure you want to proceed?</Content>
        </DialogTemplates>
        <DialogButtons>
            <DialogButton Content="OK" IconCss="e-icons e-ok-icon" IsPrimary="true" OnClick="@OnOkClick" />
            <DialogButton Content="Cancel" IconCss="e-icons e-close-icon" OnClick="@OnCancelClick" />
        </DialogButtons>
    </SfDialog>
</div>

@code {
    private bool IsVisible { get; set; } = false;
    
    private void OpenDialog() => IsVisible = true;
    
    private void OnOkClick()
    {
        // Handle OK action
        IsVisible = false;
    }
    
    private void OnCancelClick()
    {
        // Handle Cancel action
        IsVisible = false;
    }
}

Common Patterns

Alert Dialog
<SfDialog Width="350px" IsModal="true" Header="Alert">
    <DialogTemplates>
        <Content>This action cannot be undone.</Content>
    </DialogTemplates>
</SfDialog>
Form Dialog
<SfDialog Width="400px" Header="User Information">
    <DialogTemplates>
        <Content>
            <div class="form-group">
                <input type="text" placeholder="Enter name" />
            </div>
        </Content>
    </DialogTemplates>
</SfDialog>
Draggable and Resizable Dialog
<SfDialog Width="400px" Header="Features" AllowDragging="true" EnableResize="true">
    <DialogTemplates>
        <Content>You can drag and resize this dialog.</Content>
    </DialogTemplates>
</SfDialog>
Fullscreen Dialog
@using Syncfusion.Blazor.Popups
@using Syncfusion.Blazor.Buttons

<SfButton OnClick="@OpenFullScreenDialog">Open Fullscreen Dialog</SfButton>

<SfDialog @ref="DialogRef" Width="250px" ShowCloseIcon="true" Visible="false">
    <DialogTemplates>
        <Header>Dialog</Header>
        <Content>This is a fullscreen dialog</Content>
    </DialogTemplates>
    <DialogButtons>
        <DialogButton Content="OK" IsPrimary="true" OnClick="@CloseDialog" />
        <DialogButton Content="Cancel" OnClick="@CloseDialog" />
    </DialogButtons>
</SfDialog>

@code {
    SfDialog DialogRef;

    private async Task OpenFullScreenDialog()
    {
        await this.DialogRef.ShowAsync(true);
    }

    private async Task CloseDialog()
    {
        await this.DialogRef.HideAsync();
    }
}

Key Properties

PropertyTypePurpose
WidthstringSets dialog width (e.g., "400px", "50%"). Default: "100%"
HeightstringSets dialog height (e.g., "300px", "70%"). Default: "auto"
HeaderstringSets dialog header text
ContentstringSets dialog content text
VisibleboolControls dialog visibility. Supports @bind-Visible. Default: true
IsModalboolMakes dialog modal (overlay blocking interaction). Default: false
ShowCloseIconboolShows close button in header. Default: false
AllowDraggingboolEnables dialog dragging by header. Default: false
EnableResizeboolEnables dialog resizing. Default: false
CloseOnEscapeboolCloses dialog when Escape key is pressed. Default: true
AnimationSettingsDialogAnimationSettingsConfigures open/close animations (effect, duration, delay). Default: Fade effect, 400ms
PositionstringPositioning mode: "fixed" (stays on screen), "absolute" (relative to target), or "relative" (document flow). Default: "fixed"
LeftstringX-coordinate position (e.g., "100px", "20%"). Works with Position property. Default: "auto"
TopstringY-coordinate position (e.g., "50px", "10%"). Works with Position property. Default: "auto"
IDstringUnique identifier for the dialog. Required when EnablePersistence="true"
MinHeightstringSets minimum height constraint for resize (e.g., "150px"). Default: null
MaxHeightstringSets maximum height constraint for resize (e.g., "600px"). Default: null
ResizeHandlesResizeDirection[]Array of resize directions (e.g., SouthEast, NorthEast). Default: [SouthEast]
ButtonsList\<DialogButtonModel\>Programmatic button configuration (alternative to DialogButtons component)
CssClassstringCustom CSS class(es) for styling
EnableRtlboolEnables right-to-left layout support. Default: false
EnablePersistenceboolPersists position, width, height to browser local storage. Default: false. Requires ID property
TargetstringCSS selector for dialog target/container element (e.g., "#container", ".target-div")
FooterTemplateRenderFragmentCustom footer content (alternative to DialogButtons component)
AllowPrerenderboolKeeps DOM elements when hidden for faster re-display. Default: false
ZIndexdoubleSets stacking order relative to other elements. Default: 1000

Key Enums and Types

DialogEffect Enum

Animation effects for dialog open/close transitions:

ValueDescription
NoneNo animation
FadeFade in/out effect (default)
ZoomZoom in/out from center
SlideLeftSlide from/to left
SlideRightSlide from/to right
SlideTopSlide from/to top
SlideBottomSlide from/to bottom
FlipXHorizontal flip effect
FlipYVertical flip effect
ResizeDirection Enum

Directions from which the dialog can be resized:

ValueDescription
SouthBottom edge
NorthTop edge
EastRight edge
WestLeft edge
SouthEastBottom-right corner (default)
SouthWestBottom-left corner
NorthEastTop-right corner
NorthWestTop-left corner
AllAll directions
ButtonType Enum

HTML button type attribute for dialog buttons:

ValueDescription
ButtonStandard button (default)
SubmitForm submission button
ResetForm reset button
DialogAnimationSettings Class

Configuration for dialog animations:

PropertyTypeDescriptionDefault
EffectDialogEffectAnimation effectDialogEffect.Fade
DurationintAnimation duration (milliseconds)400
DelayintAnimation delay (milliseconds)0
  • Use ShowAsync(true) for fullscreen dialogs when you need maximum focus and screen real estate
  • Set Visible="false" initially when using programmatic control with ShowAsync()

Example:

var animSettings = new DialogAnimationOptions 
{ 
    Effect = DialogEffect.Zoom, 
    Duration = 300, 
    Delay = 0 
};
DialogDimension Class

Returned by GetDimension() method:

PropertyTypeDescription
WidthstringCurrent dialog width
HeightstringCurrent dialog height

Important Constraints and Notes

⚠️ Critical Requirements:

  • ID Property: Must be set when using EnablePersistence="true". The ID serves as the localStorage key.
  • Mutual Exclusivity: FooterTemplate and DialogButtons cannot be used together. Choose one approach.
  • Target Selector: The Target property must reference a valid CSS selector for existing DOM elements.
  • Resize Dependency: ResizeHandles only works when EnableResize="true".
  • Position Context: The Position property affects how Left and Top coordinates are interpreted.

📋 Best Practices:

  • Use IsModal="true" for critical actions requiring user attention
  • Set AllowPrerender="true" for frequently toggled dialogs to improve performance
  • Always provide a close mechanism (button, close icon, or Escape key)
  • Use ZIndex values in increments (1000, 1001, 1002) for nested dialogs
  • Test responsive behavior with percentage-based Width/Height values

Related Skills

  • implementing-buttons - For dialog button styling and behavior
  • implementing-dropdown-list - For select controls within dialogs
  • implementing-text-inputs - For form fields in dialogs

---

See Also

Tooltips

The Syncfusion Blazor Tooltip component provides contextual information by displaying messages when users interact with target elements through hovering, clicking, or focusing. It supports rich content, flexible positioning, multiple trigger modes, and comprehensive customization options.

Component Overview

The Blazor Tooltip component offers:

  • Multiple content types: Simple text, HTML title attributes, templates, RenderFragment, and MarkupString
  • Flexible positioning: 12 static positions (TopLeft, TopCenter, TopRight, BottomLeft, etc.), mouse trailing, and custom offsets
  • Open mode options: Hover, Click, Focus, Auto, Custom, and combinations
  • Sticky mode: Keep tooltips open with a close button
  • Customization: Full CSS control over wrapper, content, and tip pointer
  • Dynamic targets: Support for elements added after component initialization
  • Accessibility: WCAG 2.2 compliance with ARIA attributes and keyboard support
  • Collision handling: Automatic repositioning when tooltips hit viewport boundaries

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Prerequisites and system requirements
  • Package installation (Syncfusion.Blazor.Popups and Themes)
  • Namespace imports and service registration
  • Stylesheet and script resource setup
  • Basic Tooltip implementation with Button
  • WebAssembly App configuration
  • Web App setup (Server, Client, Auto render modes)
  • Interactive render mode configuration
  • First Tooltip example
Content Management

📄 Read: references/content.md

  • Simple text content using Content property
  • Using HTML title attribute as tooltip content
  • ContentTemplate for custom HTML layouts
  • Dynamic content with RenderFragment
  • Rendering HTML strings with MarkupString
  • Interactive elements inside tooltips
  • Images, formatted text, and links in tooltip content
  • Complex tooltip layouts with multiple sections
Positioning and Placement

📄 Read: references/positioning.md

  • Position property with 12 static options (TopLeft, TopCenter, TopRight, BottomLeft, BottomCenter, BottomRight, LeftTop, LeftCenter, LeftBottom, RightTop, RightCenter, RightBottom)
  • Mouse trailing behavior (MouseTrail property)
  • Offset configuration (OffsetX and OffsetY)
  • Collision detection and automatic repositioning
  • WindowCollision for viewport boundary handling
  • Combining positions with offsets
  • Best practices for position selection
Open Modes and Triggers

📄 Read: references/open-modes.md

  • OpensOn property values (Auto, Hover, Click, Focus, Custom)
  • Desktop vs mobile behavior differences
  • Multiple trigger combinations (e.g., "Hover Click")
  • Sticky mode (IsSticky) with close button
  • Open and close delays (OpenDelay, CloseDelay)
  • Custom trigger implementation with public methods
  • Mobile tap and hold behavior
  • Best practices for trigger selection
Customization and Styling

📄 Read: references/customization-and-styling.md

  • CssClass property for custom styles
  • Tip pointer customization (size, colors, shape)
  • Tooltip wrapper and popup styling
  • Content styling (font, color, padding)
  • Arrow tip styling for all 4 directions
  • Inner and outer tip CSS structure
  • Complete CSS class reference
  • Theme integration examples
Dimensions and Sizing

📄 Read: references/dimensions.md

  • Width and Height properties
  • Auto vs fixed sizing strategies
  • Scroll mode for content overflow
  • Combining Height with IsSticky for scrollable tooltips
  • Responsive sizing considerations
  • Content overflow handling
Target Configuration

📄 Read: references/target-configuration.md

  • Target property with CSS selectors
  • Single vs multiple target elements
  • Dynamic target elements added after render
  • TargetContainer for automatic registration
  • GUID ID limitations (cannot start with digit)
  • Best practices for target selection
  • Examples with buttons, links, inputs, and custom elements
Accessibility

📄 Read: references/accessibility.md

  • WCAG 2.2 and Section 508 compliance
  • ARIA attributes (role="tooltip", aria-describedby, aria-hidden)
  • Keyboard navigation (Tab for focus, Escape to close)
  • Screen reader support
  • Right-to-Left (RTL) language support
  • Color contrast requirements
  • Mobile device accessibility
  • Axe-core validation
  • Best practices for accessible tooltips

Quick Start Example

Basic Tooltip with Button
@using Syncfusion.Blazor.Popups
@using Syncfusion.Blazor.Buttons

<SfTooltip ID="Tooltip" Target="#btn" Content="@Content">
    <SfButton ID="btn" Content="Show Tooltip"></SfButton>
</SfTooltip>

@code
{
    string Content = "Click to save your changes!";
}
Tooltip with Custom Position
@using Syncfusion.Blazor.Popups
@using Syncfusion.Blazor.Buttons

<SfTooltip Target="#saveBtn" Content="Save changes" Position="Position.RightCenter">
    <SfButton ID="saveBtn" Content="Save"></SfButton>
</SfTooltip>
Multiple Tooltips Using Class Selector
@using Syncfusion.Blazor.Popups
@using Syncfusion.Blazor.Buttons

<SfTooltip ID="Tooltip" Target=".action-btn" Content="Click to perform action">
    <div id="container">
        <SfButton ID="btn1" CssClass="action-btn" Content="Save" title="Save your work"></SfButton>
        <SfButton ID="btn2" CssClass="action-btn" Content="Cancel" title="Discard changes"></SfButton>
        <SfButton ID="btn3" CssClass="action-btn" Content="Delete" title="Remove item permanently"></SfButton>
    </div>
</SfTooltip>

Common Patterns

Sticky Tooltip with Click Trigger
<SfTooltip Target="#helpBtn" Content="Need help? Contact support at help@example.com" 
           OpensOn="Click" IsSticky="true">
    <SfButton ID="helpBtn" Content="Help" IconCss="e-icons e-help"></SfButton>
</SfTooltip>
Tooltip with HTML Template
<SfTooltip Target="#infoBtn" OpensOn="Click">
    <ContentTemplate>
        <div style="padding: 10px;">
            <h4 style="margin: 0 0 10px 0;">User Information</h4>
            <p><strong>Name:</strong> John Doe</p>
            <p><strong>Email:</strong> john@example.com</p>
            <p><strong>Status:</strong> Active</p>
        </div>
    </ContentTemplate>
    <ChildContent>
        <SfButton ID="infoBtn" Content="Info" IsPrimary="true"></SfButton>
    </ChildContent>
</SfTooltip>
Tooltip with Mouse Trailing
<SfTooltip MouseTrail="true" Content="Follow the cursor" Target="#trackArea">
    <div id="trackArea" style="width: 300px; height: 200px; border: 2px dashed #ccc; padding: 20px;">
        Hover over this area - the tooltip follows your mouse!
    </div>
</SfTooltip>
Custom Styled Tooltip
<SfTooltip Target="#customBtn" Content="Custom styled tooltip" CssClass="custom-tooltip">
    <SfButton ID="customBtn" Content="Hover Me"></SfButton>
</SfTooltip>

<style>
    .custom-tooltip.e-tooltip-wrap {
        background-color: #2196F3;
        border-radius: 8px;
    }
    
    .custom-tooltip.e-tooltip-wrap .e-tip-content {
        color: white;
        font-weight: 600;
        padding: 8px 12px;
    }
    
    .custom-tooltip.e-tooltip-wrap .e-arrow-tip-outer.e-tip-top {
        border-bottom: 10px solid #2196F3;
    }
</style>
Dynamic Targets with TargetContainer
<SfTooltip ID="dynamicTooltip" Target=".dynamic-item" TargetContainer="#app-container" Content="Dynamic content item">
</SfTooltip>

<div id="app-container">
    <button class="dynamic-item" title="Static button">Static</button>
    @if (showDynamic)
    {
        <button class="dynamic-item" title="Dynamically added button">Dynamic</button>
    }
</div>

@code {
    private bool showDynamic = false;
}

Key Properties

Essential Properties
PropertyTypeDefaultDescription
ContentstringnullText content to display in tooltip
TargetstringnullCSS selector for target elements
PositionPositionTopCenterTooltip placement position
OpensOnstring"Auto"Trigger mode (Auto, Hover, Click, Focus, Custom)
IsStickyboolfalseKeep tooltip open with close button
AnimationAnimationModelnullAnimation settings for open/close transitions
Content Properties
PropertyTypeDescription
ContentTemplateRenderFragmentCustom HTML content template. Default: null
ContentstringSimple text or HTML string content. Default: null
ChildContentRenderFragmentWraps the target element(s) within the tooltip component. Default: null
Positioning Properties
PropertyTypeDefaultDescription
PositionPositionTopCenterStatic position around target
MouseTrailboolfalseFollow mouse pointer
OffsetXdouble0Horizontal offset in pixels
OffsetYdouble0Vertical offset in pixels
WindowCollisionboolfalseUse viewport for collision detection instead of parent element
Timing Properties
PropertyTypeDefaultDescription
OpenDelaydouble0Delay before opening (milliseconds)
CloseDelaydouble0Delay before closing (milliseconds)
Event Callbacks
EventTypeDescription
CreatedEventCallback\<object\>Raised after tooltip component is created
DestroyedEventCallback\<object\>Raised when tooltip component is destroyed
OnOpenEventCallback\<TooltipEventArgs\>Raised before tooltip is displayed (cancelable)
OpenedEventCallback\<TooltipEventArgs\>Raised after tooltip is opened
OnCloseEventCallback\<TooltipEventArgs\>Raised before tooltip hides (cancelable)
ClosedEventCallback\<TooltipEventArgs\>Raised after tooltip is closed
OnRenderEventCallback\<TooltipEventArgs\>Raised before tooltip is added to DOM (cancelable)
OnCollisionEventCallback\<TooltipEventArgs\>Raised during collision detection calculations
Public Methods
MethodReturn TypeDescription
OpenAsync(ElementReference?, TooltipAnimationSettings)TaskOpens tooltip programmatically with optional target and animation settings
CloseAsync(TooltipAnimationSettings)TaskCloses tooltip programmatically with optional animation settings
RefreshAsync()TaskRefreshes tooltip to sync with dynamic DOM changes and target updates
RefreshPositionAsync(ElementReference?)TaskRecalculates and updates tooltip position based on current target location
Appearance Properties
PropertyTypeDescription
CssClassstringCustom CSS class for styling. Default: null
WidthstringTooltip width (auto or pixels). Default: "auto"
HeightstringTooltip height (auto or pixels). Default: "auto"
ShowTipPointerboolShow/hide arrow pointer. Default: true
TipPointerPositionTipPointerPositionPosition of tip pointer (Auto, Start, Middle, End). Default: Auto
EnableRtlboolEnable right-to-left direction. Default: false
HtmlAttributesDictionary<string, object>Additional HTML attributes for tooltip element. Default: null
IDstringUnique identifier for the tooltip component. Default: auto-generated
Target Properties
PropertyTypeDescription
TargetstringCSS selector for target elements. Default: null
ContainerstringContainer element where tooltip popup is appended. Default: "body"
TargetContainerstringContainer selector for dynamic target registration. Default: null

Key Types and Classes

AnimationModel Class

Configuration for tooltip open and close animations:

PropertyTypeDescription
OpenTooltipAnimationSettingsAnimation settings for opening tooltip
CloseTooltipAnimationSettingsAnimation settings for closing tooltip
TooltipAnimationSettings Class

Detailed animation configuration:

PropertyTypeDefaultDescription
EffectEffectFadeAnimation effect (FadeIn, FadeOut, ZoomIn, ZoomOut, None)
Durationint150Animation duration in milliseconds
Delayint0Animation delay in milliseconds
Effect Enum

Animation effects for tooltip transitions:

ValueDescription
NoneNo animation
FadeInFade in effect for opening
FadeOutFade out effect for closing
ZoomInZoom in effect for opening
ZoomOutZoom out effect for closing
Position Enum

Tooltip placement positions:

ValueDescription
TopLeftAbove target, aligned to left edge
TopCenterAbove target, centered (default)
TopRightAbove target, aligned to right edge
BottomLeftBelow target, aligned to left edge
BottomCenterBelow target, centered
BottomRightBelow target, aligned to right edge
LeftTopLeft of target, aligned to top edge
LeftCenterLeft of target, centered vertically
LeftBottomLeft of target, aligned to bottom edge
RightTopRight of target, aligned to top edge
RightCenterRight of target, centered vertically
RightBottomRight of target, aligned to bottom edge
TipPointerPosition Enum

Arrow pointer placement on tooltip:

ValueDescription
AutoAutomatically adjusts pointer position (default)
StartPointer at start of tooltip edge
MiddlePointer at middle of tooltip edge
EndPointer at end of tooltip edge

Common Use Cases

Form Field Help Text

Provide contextual help for form inputs:

  • Read references/getting-started.md for basic setup
  • Read references/open-modes.md for Focus trigger
  • Use OpensOn="Focus" to show tooltip when input receives focus
  • Position tooltip to avoid covering the input field
Icon Button Descriptions

Add descriptive text to icon-only buttons:

  • Use simple Content property for short descriptions
  • Set OpensOn="Hover" for immediate feedback
  • Consider Position.TopCenter or Position.BottomCenter for consistency
Rich Content Cards

Display detailed information on hover:

  • Read references/content.md for template options
  • Use ContentTemplate with formatted HTML
  • Include images, links, and formatted text
  • Consider OpensOn="Click" and IsSticky="true" for complex content
Status Indicators

Show status details on hover:

  • Use color-coded tooltips with CssClass
  • Read references/customization-and-styling.md for styling
  • Keep content concise and scannable
Dynamic Dashboard Elements

Add tooltips to dynamically added widgets:

  • Read references/target-configuration.md for dynamic setup
  • Use TargetContainer to handle elements added after initialization
  • Use data attributes for tooltip content
Accessibility Enhancements

Ensure tooltips are accessible:

  • Read references/accessibility.md for compliance
  • Use semantic HTML in templates
  • Ensure keyboard navigation works
  • Test with screen readers
  • Maintain color contrast ratios

Predefined Dialog

Component Overview

The Syncfusion Blazor Predefined Dialogs use a service-based architecture with two key components:

  • SfDialogService - Registered service for opening dialogs programmatically
  • SfDialogProvider - Component added to layout to enable dialog rendering

Key Features:

  • Three dialog types: Alert, Confirm, Prompt
  • Service-based invocation from anywhere in the app
  • Customizable positioning, dimensions, and animations
  • Draggable dialog support
  • Button customization with icons
  • Custom content rendering
  • Built-in accessibility support

Package: Syncfusion.Blazor.Popups Namespace: Syncfusion.Blazor.Popups

---

Documentation and Navigation Guide

Getting Started (Setup & Basic Usage)

📄 Read: references/getting-started.md

  • Prerequisites and system requirements
  • Installation for Blazor WebAssembly, Server App, and Web App
  • NuGet package installation (Syncfusion.Blazor.Popups)
  • Import namespaces (_Imports.razor)
  • Service registration (SfDialogService, AddSyncfusionBlazor)
  • Adding SfDialogProvider to MainLayout
  • Stylesheet and script references
  • Alert dialog basics (AlertAsync method)
  • Confirm dialog basics (ConfirmAsync method)
  • Prompt dialog basics (PromptAsync method)
  • Basic code examples for all three dialog types
Positioning Dialogs

📄 Read: references/positioning.md

  • DialogOptions.Position property
  • PositionDataModel configuration (X and Y)
  • Position values: left, center, right, top, bottom, offset
  • Customizing dialog position for alert, confirm, prompt
  • Examples with top-center positioning
Draggable Dialogs

📄 Read: references/dragging.md

  • DialogOptions.AllowDragging property
  • Enabling drag behavior by dialog header
  • Header visibility requirement
  • Examples for draggable alert, confirm, prompt dialogs
Dialog Dimensions

📄 Read: references/dimensions.md

  • DialogOptions.Width and Height properties
  • Default auto-sizing behavior
  • Setting dimensions in pixels or percentages
  • Max-width and max-height using CssClass
  • Min-width and min-height using CssClass
  • Responsive sizing strategies
  • Examples with custom dimensions
Customization Options

📄 Read: references/customization.md

  • DialogOptions.PrimaryButtonOptions (OK button)
  • DialogOptions.CancelButtonOptions (Cancel button)
  • DialogButtonOptions.Content (button text)
  • DialogButtonOptions.IconCss (button icons)
  • DialogOptions.ShowCloseIcon property
  • DialogOptions.ChildContent for custom content rendering
  • Customizing alert, confirm, prompt dialogs
  • Advanced content customization examples
Animation Effects

📄 Read: references/animation.md

  • DialogOptions.AnimationSettings property
  • DialogAnimationOptions configuration
  • Animation Delay, Duration, and Effect
  • DialogEffect enumeration values
  • Zoom, fade, slide effects
  • Examples with zoom animation

---

Quick Start Example

Basic Alert Dialog
@page "/alert-example"
@inject SfDialogService DialogService

<SfButton @onclick="ShowAlert">Show Alert</SfButton>

@code {
    private async Task ShowAlert()
    {
        await DialogService.AlertAsync("This is an alert message!");
    }
}
Basic Confirm Dialog
@page "/confirm-example"
@inject SfDialogService DialogService

<SfButton @onclick="ShowConfirm">Show Confirm</SfButton>
<p>@result</p>

@code {
    private string result = "";
    
    private async Task ShowConfirm()
    {
        bool isConfirmed = await DialogService.ConfirmAsync("Do you want to proceed?");
        result = isConfirmed ? "User clicked OK" : "User clicked Cancel";
    }
}
Basic Prompt Dialog
@page "/prompt-example"
@inject SfDialogService DialogService

<SfButton @onclick="ShowPrompt">Show Prompt</SfButton>
<p>@userInput</p>

@code {
    private string userInput = "";
    
    private async Task ShowPrompt()
    {
        string input = await DialogService.PromptAsync("Enter your name:");
        userInput = input ?? "User cancelled";
    }
}

---

Common Patterns

Pattern 1: Confirmation Before Delete
private async Task DeleteItem(int itemId)
{
    var options = new DialogOptions()
    {
        PrimaryButtonOptions = new DialogButtonOptions()
        {
            Content = "Delete",
            IconCss = "e-icons e-delete"
        },
        CancelButtonOptions = new DialogButtonOptions()
        {
            Content = "Cancel"
        }
    };
    
    bool confirmed = await DialogService.ConfirmAsync(
        "Are you sure you want to delete this item?", 
        "Confirm Delete", 
        options
    );
    
    if (confirmed)
    {
        // Perform delete operation
    }
}
Pattern 2: Positioned Dialog
private async Task ShowPositionedAlert()
{
    var options = new DialogOptions()
    {
        Position = new PositionDataModel()
        {
            X = "center",
            Y = "top"
        },
        Width = "400px",
        Height = "200px"
    };
    
    await DialogService.AlertAsync(
        "This dialog appears at the top center!",
        "Alert",
        options
    );
}
Pattern 3: Custom Content Prompt
private async Task ShowCustomPrompt()
{
    string username = "";
    
    var options = new DialogOptions()
    {
        ChildContent = @<div>
            <label>Username:</label>
            <input type="text" @bind="username" class="e-input" />
        </div>,
        PrimaryButtonOptions = new DialogButtonOptions() { Content = "Connect" },
        CancelButtonOptions = new DialogButtonOptions() { Content = "Close" }
    };
    
    await DialogService.PromptAsync("Enter your credentials:", "Login", options);
}
Pattern 4: Animated Draggable Dialog
private async Task ShowAnimatedDialog()
{
    var options = new DialogOptions()
    {
        AllowDragging = true,
        ShowCloseIcon = true,
        AnimationSettings = new DialogAnimationOptions()
        {
            Effect = DialogEffect.Zoom,
            Duration = 300,
            Delay = 0
        },
        Width = "500px"
    };
    
    await DialogService.AlertAsync(
        "Drag me around! I have zoom animation too!",
        "Draggable Dialog",
        options
    );
}

---

Key Properties

SfDialogService Methods
MethodParametersReturnsDescription
AlertAsynctitle, content, optionsTaskShows alert dialog with OK button
ConfirmAsynctitle, content, optionsTask<bool>Shows confirm dialog, returns true/false
PromptAsynctitle, defaultValue, optionsTask<string>Shows prompt dialog, returns input or null
DialogOptions Properties
PropertyTypeDefaultDescription
PositionPositionDataModelcenter/centerDialog position (X, Y coordinates)
Widthstring"auto"Dialog width (px, %, em)
Heightstring"auto"Dialog height (px, %, em)
AllowDraggingboolfalseEnable dragging by header
ShowCloseIconboolfalseShow close icon button
AnimationSettingsDialogAnimationOptionsdefaultAnimation configuration
PrimaryButtonOptionsDialogButtonOptionsnullPrimary (OK) button customization
CancelButtonOptionsDialogButtonOptionsnullCancel button customization
ChildContentRenderFragmentnullCustom content for dialog body
CssClassstringnullCustom CSS class
CloseOnEscapebooltrueClose on Escape key
ZIndexint1000Dialog z-index
PositionDataModel Properties
PropertyTypeValuesDescription
Xstringleft, center, right, offsetHorizontal position
Ystringtop, center, bottom, offsetVertical position
DialogButtonOptions Properties
PropertyTypeDescription
ContentstringButton text content
IconCssstringCSS class for button icon
IsPrimaryboolPrimary button styling
DialogAnimationSettings Properties
PropertyTypeDescription
EffectDialogEffectAnimation effect (Zoom, Fade, etc.)
DurationintAnimation duration in milliseconds
DelayintAnimation delay in milliseconds

---

Common Use Cases

Use Case 1: Error/Warning/Info Messages

Display system messages, errors, warnings, or information requiring user acknowledgment using Alert dialogs.

Use Case 2: Critical Action Confirmation

Get user confirmation before destructive actions like delete, logout, or data loss operations using Confirm dialogs.

Use Case 3: User Input Collection

Collect simple text input like usernames, search queries, or configuration values using Prompt dialogs.

Use Case 4: Form Validation Feedback

Show validation errors or success messages with positioned dialogs that don't obstruct form fields.

Use Case 5: Custom Interactive Dialogs

Create complex interactive dialogs with custom content, multiple inputs, and customized buttons.

Use Case 6: Notification System

Build notification systems with animated, positioned dialogs that appear in specific screen areas.

---

Setup Requirements

Prerequisites: 1. Blazor WebAssembly, Server, or Web App project 2. .NET SDK installed 3. Visual Studio, VS Code, or .NET CLI

Required Packages:

  • Syncfusion.Blazor.Popups
  • Syncfusion.Blazor.Themes

Required Setup: 1. Register SfDialogService in Program.cs 2. Register AddSyncfusionBlazor() service 3. Add SfDialogProvider in MainLayout.razor 4. Include Syncfusion theme stylesheet in head 5. Include Syncfusion script reference in body 6. Import Syncfusion.Blazor.Popups namespace in _Imports.razor

Refer to references/getting-started.md for complete setup instructions for all Blazor app types.

Related skills

Backend & APIsbackendintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.