Skip to content

Commit f3c08fb

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 81d6cc2 commit f3c08fb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+7741
-3074
lines changed

docs-aspnet-mvc/helpers/grid/binding/ajax-binding.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ Below are listed the steps for you to follow when configuring the Kendo UI Grid
7777

7878
> **Important**
7979
> * The `ToDataSourceResult()` method will page, sort, filter, and group the collection that is passed to it. If this collection is already paged, the method returns an empty result.
80-
> * As of the Kendo UI R1 2017 SP1 release, you can use the `ToDataSourceResultAsync` extension method to provide the asynchronous functionality of `ToDataSourceResult` by leveraging the `async` and `await` features of the .NET Framework.
80+
> * As of the Kendo UI R1 2017 SP1 release, you can use the `ToDataSourceResultAsync` extension method to provide the asynchronous functionality of `ToDataSourceResult` by leveraging the `async` and `await` features of the .NET Framework.
81+
> * If you have impersonation enabled, `ToDataSourceResultAsync` extension method works well when only one thread is used in your ASP.NET application. As soon as you create a new one, impersonation drops off in the newly created child thread because all newly created child threads in ASP.NET by default run under the ASP.NET worker process's identity. To change this behaviour you have to explicitly impersonate current identity within the child thread's code.
8182
8283
The following example demonstrates how to implement the `ToDataSourceResultAsync` extension method in your project.
8384

docs/api/javascript/ui/autocomplete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ The noData template receives the widget itself as a part of the data argument. T
409409

410410
> **Important** The popup will open when 'noDataTemplate' is defined
411411
412-
#### Example - specify headerTemplate as a string
412+
#### Example - specify noDataTemplate as a string
413413

414414
<input id="autocomplete" />
415415
<script>

docs/api/javascript/ui/combobox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ The noData template receives the widget itself as a part of the data argument. T
512512

513513
> **Important** The popup will open when 'noDataTemplate' is defined
514514
515-
#### Example - specify headerTemplate as a string
515+
#### Example - specify noDataTemplate as a string
516516

517517
<input id="combobox" />
518518
<script>

docs/api/javascript/ui/dropdownlist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ The noData template receives the widget itself as a part of the data argument. T
505505

506506
> **Important** The popup will open when 'noDataTemplate' is defined
507507
508-
#### Example - specify headerTemplate as a string
508+
#### Example - specify noDataTemplate as a string
509509

510510
<input id="dropdownlist" />
511511
<script>

0 commit comments

Comments
 (0)