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

Working With Grid

1 Answer 85 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Taffy Lewis
Top achievements
Rank 1
Taffy Lewis asked on 10 Jun 2019, 05:33 PM

Starting out with the tool, was looking at the tutorials.  Tried to use the ".Deferred" property on the grid as described in the tutorial, but and the records do not show when I use this features-as suggested.  Reviewing the Kendo examples, I don't really see the use of ".Differed."  Is this an outdated property. 

1 Answer, 1 is accepted

Sort by
0
Georgi
Telerik team
answered on 12 Jun 2019, 10:45 AM
Hello Taffy,

The Deferred method will defer the initialization scripts to a specified place. Please have in mind that you have to specify where the scripts should defer.

e.g.

    @(Html.Kendo().Grid<Model>()
          .Name("grid")
          .Deferred()
    )
 
// the script will be inserted here
@Html.Kendo().DeferredScriptsFor("grid")

More information about deferred initialization can be found in the following article:



Regards,
Georgi
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
Grid
Asked by
Taffy Lewis
Top achievements
Rank 1
Answers by
Georgi
Telerik team
Share this question
or