This is a migrated thread and some comments may be shown as answers.

Update Grid data without the "spinning" icon

2 Answers 105 Views
Grid
This is a migrated thread and some comments may be shown as answers.
steve
Top achievements
Rank 1
steve asked on 07 Feb 2013, 05:45 PM
Using Ajax as the data source for a KendoUI Grid on a MVC4 application.  I have no problem updating the data automatically every few seconds using "dataSource.read()".  Is it possible for that update to happen without the grid showing the "spinning" icon that indicates that it is fetching data?  I would like the updates to happen seemlessly.  (The grid is read only.)

I would appreciate any thoughts or to point me in the right direction.

Thanks,
Steve

2 Answers, 1 is accepted

Sort by
0
Accepted
Dimo
Telerik team
answered on 08 Feb 2013, 09:44 AM
Hi Steve,

You can add the following CSS rule to achieve the desired behavior.

.k-grid .k-loading-mask
{
    visibility: hidden;
}

If you want to target a specific Grid instance only, use the widget's ID instead of the .k-grid class.

Greetings,
Dimo
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
steve
Top achievements
Rank 1
answered on 09 Feb 2013, 03:06 AM
That was it, Thanks!
Tags
Grid
Asked by
steve
Top achievements
Rank 1
Answers by
Dimo
Telerik team
steve
Top achievements
Rank 1
Share this question
or