ASP.NET MVC Loader Overview

Telerik UI for ASP.NET MVC Ninja image

The Loader is part of Telerik UI for ASP.NET MVC, a professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.

The Telerik UI Loader HtmlHelper for ASP.NET MVC is a server-side wrapper for the Kendo UI Loader widget.

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")
    )

Basic Configuration

The following example demonstrates the Loader in action.

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

Functionality and Features

  • Appearance—Explore the available options for customizing the Loader appearance.
  • Integration—The Loader can be integrated into another components.
  • Accessibility—The Loader is accessible by screen readers and provides WAI-ARIA, Section 508, and WCAG 2.2 compatibility.

Next Steps

See Also

In this article