Skip to content

Commit 102aa8e

Browse files
committed
Sync with Kendo UI Professional
1 parent b32da62 commit 102aa8e

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed

docs-aspnet/html-helpers/data-management/grid/paging.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,21 @@ Use as small page sizes as possible, because rendering too many records causes p
242242
```
243243
{% endif %}
244244
245+
You can change the position of the Pager in the Grid. The available options for the positions are `top` and `bottom`.
246+
247+
```JavaScript
248+
<input type="checkbox" id="btnPagerPosition" />
249+
250+
$("#btnPagerPosition").change(function () {
251+
var position = this.checked ? "top" : "bottom";
252+
$("#grid").data("kendoGrid").setOptions({
253+
pageable: {
254+
position: position
255+
}
256+
});
257+
});
258+
```
259+
245260
## See Also
246261

247262
* [Paging by the Grid HtmlHelper for {{ site.framework }} (Demo)](https://demos.telerik.com/{{ site.platform }}/grid/aggregates)

docs-aspnet/installation/activating-your-license/license-key-errors.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ Refer to the error messages below for specific tips.
3737
* [Your perpetual license is invalid](#your-perpetual-license-is-invalid)
3838
* [Your trial license has expired](#your-trial-license-has-expired)
3939
* [Your license is not valid for the detected product(s)](#your-license-is-not-valid-for-the-detected-products)
40+
{% if site.mvc %}
41+
* [Could not load file or assembly 'Telerik.Licensing.Runtime'](#could-not-load-file-or-assembly-teleriklicensingruntime)
42+
{% endif %}
4043

4144
### No license key is detected
4245

@@ -112,6 +115,19 @@ You are using a product version released outside the validity period of your per
112115
<a href="https://www.telerik.com/purchase/aspnet-mvc" target="_blank">Review the purchase options for {{ site.product }}</a>. Then, [update your license key]({%slug installation_license_key_aspnetcore%}#license-key-updates).
113116
{% endif %}
114117

118+
{% if site.mvc %}
119+
### Could not load file or assembly 'Telerik.Licensing.Runtime'
120+
121+
If you experience the error *"The located assembly's manifest definition does not match the assembly reference."* use the following assembly redirect:
122+
123+
```
124+
<dependentAssembly>
125+
<assemblyIdentity name="Telerik.Licensing.Runtime" publicKeyToken="98bb5b04e55c09ef" culture="neutral" />
126+
<bindingRedirect oldVersion="0.0.0.0-<latest version of Telerik.Licensing package>" newVersion="<latest version of Telerik.Licensing package>" />
127+
</dependentAssembly>
128+
```
129+
{% endif %}
130+
115131
## See Also
116132

117133
* [Download and Install License Key]({%slug installation_license_key_aspnetcore%})

docs-aspnet/installation/activating-your-license/setting-up-your-license.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ If you need to activate {{ site.product }} only in a specific app, then save `te
5454

5555
@[template](/_contentTemplates/licensing-templates.md#license-key-update-whenever)
5656

57+
By default, when you have an active license, the [required Kendo UI scripts]({% slug copyclientresources_aspnetmvc6_aspnetmvc%}) are activated internally. Version 2025.1.227 introduces the `ActivateKendoScripts` method that you can use to activate the Kendo UI scripts manually. Call this method before defining any HtmlHelper {% if site.core %}or TagHelper {% endif %}components.
58+
59+
```
60+
@(Html.Kendo().ActivateKendoScripts())
61+
```
62+
5763
## License Key Updates
5864

5965
Always install a new license key whenever you:

0 commit comments

Comments
 (0)