Skip to content

Latest commit

 

History

History
77 lines (62 loc) · 2.8 KB

File metadata and controls

77 lines (62 loc) · 2.8 KB
title page_title description slug position
Overview
Overview
Learn the basics when working with the Telerik UI Loader component for {{ site.framework }}.
htmlhelpers_loader_aspnetcore_overview
0

{{ site.framework }} Loader Overview

{% if site.core %} The Telerik UI Loader TagHelper and HtmlHelper for {{ site.framework }} are server-side wrappers for the Kendo UI Loader widget. {% else %} The Telerik UI Loader HtmlHelper for {{ site.framework }} is a server-side wrapper for the Kendo UI Loader widget. {% endif %}

The Loader component is a visual indicator that expresses an indeterminate wait time. It informs users about the status of ongoing processes, such as loading an application, submitting a form, saving updates or fetching data.

Initializing the Loader

The following example demonstrates how to define the Loader.

    @(Html.Kendo().Loader()
        .Name("loader")
    )

{% if site.core %}

    <kendo-loader name="loader"></kendo-loader>

{% endif %}

Basic Configuration

The following example demonstrates the Loader in action.

    @(Html.Kendo().Loader()
        .Name("loader")
        .Size(LoaderSize.Large)
        .ThemeColor(LoaderThemeColor.Secondary)
        .Type(LoaderType.InfiniteSpinner)
    )

{% if site.core %}

    <kendo-loader name="loader"
        type="LoaderType.InfiniteSpinner" 
        size="LoaderSize.Large" 
        themeColor="LoaderThemeColor.Secondary">
    </kendo-loader>

{% endif %}

Functionality and Features

  • [Appearance]({% slug htmlhelpers_loader_aspnetcore_appearance %})—Explore the available options for customizing the Loader appearance.
  • [Integration]({% slug htmlhelpers_loader_aspnetcore_integration %})—The Loader can be integrated into another components.
  • [Accessibility]({% slug htmlhelpers_loader_accessibility %})—The Loader is accessible by screen readers and provides WAI-ARIA, Section 508, and WCAG 2.2 compatibility.

Next Steps

See Also