Skip to content

Commit 1e1a98a

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 804f7ed commit 1e1a98a

File tree

8 files changed

+107
-7
lines changed

8 files changed

+107
-7
lines changed

docs-aspnet/html-helpers/pdf/pdfviewer/toolbar.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ The toolbar collection includes the following built-in tools:
1919

2020
* `pager`
2121
* `zoom`
22+
* `zoomInOut`
2223
* `toggleSelection`
2324
* `search`
2425
* `open`
@@ -27,7 +28,7 @@ The toolbar collection includes the following built-in tools:
2728

2829
> Running an Adblock extension in Chrome might treat the new browser tab for the print dialog as a potential ad and block it.
2930
30-
The `zoom`, `toggleSelection`, `search` and `print` tools are available only with PDFjs processing.
31+
The `zoom`, `zoomInOut`, `toggleSelection`, `search` and `print` tools are available only with PDFjs processing.
3132

3233
The following example demonstrates basic configuration options for the PDFViewer toolbar tools. You can also add `spacer` elements, in order to group a preferable set of tools.
3334

@@ -39,6 +40,7 @@ The following example demonstrates basic configuration options for the PDFViewer
3940
items.Add().Name("pager");
4041
items.Add().Name("spacer");
4142
items.Add().Name("zoom");
43+
items.Add().Name("zoomInOut");
4244
items.Add().Name("toggleSelection");
4345
items.Add().Name("search");
4446
items.Add().Name("open");
@@ -60,6 +62,8 @@ The following example demonstrates basic configuration options for the PDFViewer
6062
</pdfviewer-toolbar-item>
6163
<pdfviewer-toolbar-item name="zoom">
6264
</pdfviewer-toolbar-item>
65+
<pdfviewer-toolbar-item name="zoomInOut">
66+
</pdfviewer-toolbar-item>
6367
<pdfviewer-toolbar-item name="toggleSelection">
6468
</pdfviewer-toolbar-item>
6569
<pdfviewer-toolbar-item name="search">

docs-aspnet/installation/adding-client-side-resources/using-license-code.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,17 @@ To acquire a license file, generate it:
5757

5858
## Step 2: Add the License File
5959

60-
To register the Kendo UI product, add the `kendo-ui-license.js` file in the root of the application or the main scripts folder. The following table shows the most common location where you can include it according to the application type.
60+
To register the Kendo UI product, add the `kendo-ui-license.js` file in the root of the application or the main scripts folder. The following table shows the most common location where you can include it in your application.
6161

62+
{% if site.core %}
6263
|Type of Application|Common Locations
6364
|:---|:---
64-
|ASP.NET MVC applications|<ul><li><code>./</code></li><li><code>./Scripts</code></li></ul>
6565
|ASP.NET Core applications|<ul><li><code>./wwwroot</code></li><li><code>./wwwroot/scripts</code></li><li><code>./wwwroot/js</code></li></ul>
66+
{% else %}
67+
|Type of Application|Common Locations
68+
|:---|:---
69+
|ASP.NET MVC applications|<ul><li><code>./</code></li><li><code>./Scripts</code></li></ul>
70+
{% endif %}
6671

6772
## Step 3: Add a Reference to the License File
6873

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ Visual Studio Code snippets are templates that make it easier to enter repetitiv
1313

1414
## {{site.product}} Snippets
1515

16-
The {{site.product}} Visual Studio Code Productivity Tools provide snippets for the components listed in the table below in both flavors&mdash;HTML Helpers and Tag Helpers. Type `tc`&mdash;short for Telerik UI for ASP.NET Core&mdash;or the name of component you wish to add.
16+
The [{{site.product}} Visual Studio Code Productivity Tools](https://marketplace.visualstudio.com/items?itemName=TelerikInc.aspnetcoretemplatewizard) provide snippets for the components listed in the table below in both flavors&mdash;HTML Helpers and Tag Helpers. Type `tc`&mdash;short for Telerik UI for ASP.NET Core&mdash;or the name of component you wish to add.
17+
18+
You can access the code snippets pack by installing the [Telerik UI for ASP.NET Core Visual Studio Code productivity extension](https://marketplace.visualstudio.com/items?itemName=TelerikInc.aspnetcoretemplatewizard).
1719

1820
| Component | Html Helper snippet | TagHelper snippet |
1921
|--- | --- | --- |

docs-aspnet/vs-integration/snippets.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ Visual Studio snippets are templates that make it easier to enter repetitive cod
1212

1313
## {{site.product}} Snippets
1414

15-
The {{site.product}} Visual Studio Productivity Tools provide snippets for the components listed in the table below in both flavors&mdash;HTML Helpers and Tag Helpers. Type `tc`&mdash;short for Telerik UI for ASP.NET Core&mdash;or the name of component you wish to add.
15+
The [{{site.product}} Visual Studio Productivity Tools](https://marketplace.visualstudio.com/items?itemName=TelerikInc.ProgressTelerikASPNETCoreVSExtensions) provide snippets for the components listed in the table below in both flavors&mdash;HTML Helpers and Tag Helpers. Type `tc`&mdash;short for Telerik UI for ASP.NET Core&mdash;or the name of component you wish to add.
16+
17+
You can access the code snippets pack by installing the [Telerik UI for ASP.NET Core Visual Studio productivity extension](https://marketplace.visualstudio.com/items?itemName=TelerikInc.ProgressTelerikASPNETCoreVSExtensions).
1618

1719
| Component | Html Helper snippet | TagHelper snippet |
1820
|--- | --- | --- |

docs/_config.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -631,6 +631,8 @@ navigation:
631631
title: "RadioGroup"
632632
"*rating":
633633
title: "Rating"
634+
"*signature":
635+
title: "Signature"
634636
"*panelbar":
635637
title: "PanelBar"
636638
"*pdfviewer":
@@ -1861,6 +1863,12 @@ defaults:
18611863
values:
18621864
component: "rating"
18631865

1866+
-
1867+
scope:
1868+
path: "controls/editors/signature"
1869+
values:
1870+
component: "signature"
1871+
18641872
-
18651873
scope:
18661874
path: "controls/diagrams-and-maps/orgchart"
@@ -2160,6 +2168,7 @@ intro_columns:
21602168
"RadioGroup": "overview_kendoui_radiogroup_widget"
21612169
"RangeSlider": "overview_kendoui_rangeslider_widget"
21622170
"Rating": "overview_kendoui_rating_widget"
2171+
"Signature": "overview_kendoui_signature_widget"
21632172
"Slider": "overview_kendoui_slider_widget"
21642173
"Switch": "overview_kendoui_switch_widget"
21652174
"TextArea": "overview_kendoui_textarea_widget"

docs/api/javascript/ui/pdfviewer.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,7 @@ Toolbar option accepts a Boolean value which indicates if the toolbar will be di
299299
The following list indicates the default tools:
300300

301301
* `pager`
302+
* `zoomInOut`
302303
* `zoom`
303304
* `toggleSelection`
304305
* `search`
@@ -342,7 +343,7 @@ For DPL Processing `exportAs` tool could be configured to export a single page t
342343
$("#pdf-viewer").kendoPDFViewer({
343344
toolbar: {
344345
items: [
345-
{ type: "zoom", zoomInOut: true, combobox: { zoomLevels: [50, 100, 200]}, command: "ZoomCommand"}
346+
{ type: "zoom", combobox: { zoomLevels: [50, 100, 200]}, command: "ZoomCommand"}
346347
]
347348
}
348349
});

docs/controls/PDF/PDFViewer/toolbar.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ You can control the number and type of the rendered tools by initializing the it
1717
The toolbar collection includes the following built-in tools:
1818

1919
* `pager`
20+
* `zoomInOut`
2021
* `zoom`
2122
* `toggleSelection`
2223
* `search`
@@ -39,7 +40,7 @@ The following example demonstrates basic configuration options for the PDFViewer
3940
$("#pdfViewer").kendoPDFViewer({
4041
toolbar: {
4142
items: [
42-
"pager","spacer","zoom","toggleSelection","spacer","search","open","download","print"
43+
"pager","spacer", "zoomInOut", "zoom","toggleSelection","spacer","search","open","download","print"
4344
]
4445
},
4546
})

docs/controls/editors/signature/appearance.md

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,84 @@ $("#signature").kendoSignature({
5757
});
5858
```
5959

60+
## Options
61+
62+
The Kendo UI Signature supports the following styling options:
63+
64+
- [`size`](#size)—configures the overall size of the component.
65+
- [`rounded`](#rounded)—configures the border radius of the component.
66+
- [`fillMode`](#fillmode)—configures how the color is applied to the component.
67+
68+
### Size
69+
70+
The `size` option controls how big or small the rendered Signature looks.
71+
72+
The following values are available for the [`size`](/api/javascript/ui/signature/configuration/size) option:
73+
74+
- `sm`—small size
75+
- `md`—medium size
76+
- `lg`—large size
77+
- `none`—unset
78+
79+
The following example demonstrates how to configure the `size` of the component through the widget configuration:
80+
81+
```dojo
82+
<div id="signature"></div>
83+
<script>
84+
$("#signature").kendoSignature({
85+
size: "medium"
86+
});
87+
</script>
88+
```
89+
90+
### Rounded
91+
92+
The `rounded` option controls how much border radius is applied to the rendered Signature.
93+
94+
The following values are available for the [`rounded`](/api/javascript/ui/signature/configuration/rounded) option:
95+
96+
- `sm`—small border radius
97+
- `md`—medium border radius
98+
- `lg`—large border radius
99+
- `full`—largest border radius
100+
- `none`—unset
101+
102+
The following example demonstrates how to configure the `rounded` of the component through the widget configuration:
103+
104+
```dojo
105+
<div id="signature"></div>
106+
<script>
107+
$("#signature").kendoSignature({
108+
rounded: "medium"
109+
});
110+
</script>
111+
```
112+
113+
### FillMode
114+
115+
The `fillMode` option controls the way the color is applied to the rendered Signature.
116+
117+
The following values are available for the [`fillMode`](/api/javascript/ui/signature/configuration/fillmode) option:
118+
119+
- `solid`
120+
- `flat`
121+
- `outline`
122+
- `none`
123+
124+
The following example demonstrates how to configure the `fillMode` of the component through the widget configuration:
125+
126+
```dojo
127+
<div id="signature"></div>
128+
<script>
129+
$("#signature").kendoSignature({
130+
fillMode: "solid"
131+
});
132+
</script>
133+
```
134+
60135
## See Also
61136

62137
* [Demo Page for the Signature](https://demos.telerik.com/kendo-ui/signature/index)
138+
* [Signature Appearance(Demo)](https://demos.telerik.com/kendo-ui/signature/index)
63139
* [JavaScript API Reference of the Signature](/api/javascript/ui/signature)
64140
* [Knowledge Base Section](/knowledge-base)

0 commit comments

Comments
 (0)