Skip to content

Commit ff89aa7

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 182bc36 commit ff89aa7

File tree

9 files changed

+45
-82
lines changed

9 files changed

+45
-82
lines changed

docs-aspnet/installation/vs-code-integration/scaffolder.md

-77
This file was deleted.

docs-aspnet/redirects.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ rewrite ^/{{ site.platform }}/$
55
/{{ site.platform }}/introduction
66
permanent;
77

8-
rewrite ^/{{ site.platform }}/vs-integration/(.*)$
9-
/{{ site.platform }}/getting-started/vs-integration/$1
8+
rewrite ^/{{ site.platform }}/getting-started/vs-integration/(.*)$
9+
/{{ site.platform }}/vs-integration/$1
1010
permanent;
1111

1212
{% if site.core %}

docs-aspnet/vs-integration/vs-code-integration/introduction.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: Overview
33
page_title: Visual Studio Code Integration Overview
44
description: Learn how to enhance your experience in developing web applications with Progress Telerik UI for ASP.NET Core.
5+
previous_url: /installation/vs-code-integration/introduction
56
slug: overview-vs-code-integration
67
position: 1
78
---

docs-aspnet/vs-integration/vs-code-integration/scaffolder.md

+39
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,42 @@ Using the {{site.product}} Visual Studio Code Scaffolder you can quickly gener
3737
1. Confirming the options will generate a View containig the selected component, with the provided configuration options.
3838

3939
For example, if you scaffold a new page with the {{site.product}} Grid component, you will be able to set the CRUD endpoints for the DataSource, set the configuration for sorting, filtering, grouping, column resizing and along with additional configuration settings.
40+
41+
## Using the CLI
42+
43+
The {{site.product}} Visual Studio Code Scaffolder also supports scaffolding items via the CLI. To scaffold a View run `tks <command-name> [options]`. Run `tks <command-name> --help` for a list of available options for each command. The following commands are available:
44+
45+
| Command | Description |
46+
|---|---|
47+
|`core-grid-page` | Scaffold a Grid View |
48+
|`core-chart-page` | Scaffold a Chart View |
49+
|`core-form-page` | Scaffold a Form View |
50+
|`core-listview-page` | Scaffold a ListView View |
51+
|`core-gantt-page` | Scaffold a Gantt View |
52+
|`core-scheduler-page` | Scaffold a Scheduler View |
53+
54+
For example, the `tks core-grid-page --help` command will list all available options for scaffolging a Grid View. Running the `tks core-grid-page --name OrdersGrid --component-name grid --model OrderViewModel --columns OrderID Freight ShipAddress OrderDate IsShipped --controller Orders --action-read GetOrders --filterable --pageable --sortable` command will generate an **OrdersGrid.cshtml** file in `~/Views/Orders/` folder with the following configuration:
55+
56+
```HtmlHelper
57+
@(Html.Kendo().Grid<OrderViewModel>()
58+
.Name("grid")
59+
.Columns(columns =>
60+
{
61+
columns.Bound(c => c.OrderID);
62+
columns.Bound(c => c.Freight);
63+
columns.Bound(c => c.ShipAddress);
64+
columns.Bound(c => c.OrderDate);
65+
columns.Bound(c => c.IsShipped);
66+
67+
})
68+
.Pageable()
69+
.Sortable()
70+
.Filterable()
71+
.HtmlAttributes(new { style = "height:430px;" })
72+
.DataSource(dataSource => dataSource
73+
.Ajax()
74+
.PageSize(20)
75+
.Read(read => read.Action("GetOrders", "Orders"))
76+
)
77+
)
78+
```

docs-aspnet/installation/vs-code-integration/snippets.md renamed to docs-aspnet/vs-integration/vs-code-integration/snippets.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: Snippets
33
page_title: Visual Studio Code Snippets
44
description: Learn more on the available VS Code snippets and how they help you speed up the developing web applications with Progress Telerik UI for ASP.NET Core.
5+
previous_url: /installation/vs-code-integration/snippets
56
slug: snippets-vs-code
67
position: 2
78
---

docs-aspnet/web.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@
8282
<action type="Rewrite" url="{R:1}.html" />
8383
</rule>
8484
<rule name="vs-integration" enabled="true">
85-
<match url="^vs-integration/(.*)$" />
86-
<action type="Redirect" url="getting-started/vs-integration/{R:1}" />
85+
<match url="^getting-started/vs-integration/(.*)$" />
86+
<action type="Redirect" url="vs-integration/{R:1}" />
8787
</rule>
8888
<rule name="gdpr" enabled="true">
8989
<match url="gdpr" ignoreCase="true" />

docs/controls/data-management/spreadsheet/end-user/user-guide.md

-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,6 @@ The Spreadsheet supports many of the Excel keyboard shortcuts as seen in the [Li
156156
## Known Limitations
157157

158158
- Because of specific requirements, browsers might not support the **Paste** command when it is initiated from the context menu or from the **Toolbar**. If you try to apply the command in either of these ways, a popup message is displayed informing you about the limitation. Use the keyboard navigation to achieve the desired result.
159-
- Setting a named range that includes a dot is not supported and will probably produce an error.
160159
- Formulas that are very deeply nested, such as `=sin(cos(sin(cos(...))))` or `=A1+A2+A3+...+A200`, might produce a stack overflow error. Even though the latter does not seem nested, it is internally treated as `=((((...(A1+A2)+A3)+A4)+...+)+A200)`).
161160

162161
**Solution**

0 commit comments

Comments
 (0)