Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 864 Bytes

grid-remove-the-grid-loading-indicator.md

File metadata and controls

40 lines (31 loc) · 864 Bytes
title description type page_title slug tags ticketid res_type
Hide the Grid Loading Indicator
Learn how to hide the loading indicator of a Kendo UI Grid.
how-to
Remove the Grid Loading Indicator - Kendo UI Grid for ASP.NET MVC
grid-remove-the-grid-loading-indicator
grid, loading, hide
1141398
kb

Environment

Product Progress® Telerik® UI Grid for ASP.NET MVC
Product Version 2017.3.1026

Description

On my page, I refresh the Grid every three seconds by using the SetInterval Javascript function. As a result, the Grid reloads and displays a loading indicator.

How can I hide the loading indicator?

Solution

Remove the loading mask, which causes the issue, by hiding the mask DOM element.

 .k-loading-mask{
  display: none;
 }