New to Kendo UI for jQuery? Download free 30-day trial

Hide the Grid Loading Indicator

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;
 }
In this article