You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs-aspnet/getting-started-mvc/vs-integration/new-project-wizard.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,12 @@ To start the **Create New Project Wizard**, follow either of the approaches belo
29
29
30
30
For convenience, the same project templates are located under the **Visual C#** > **Web** and **Visual Basic** > **Web** nodes.
31
31
32
+
You will receive a list of predefined Telerik templates and the Telerik ASP.NET MVC versions list to choose from:
33
+
***Blank Template** - It lets you develop your application from scratch with the Telerik UI components enabled.
34
+
***Standard Template** - You can start off with three example pages which have Panel Bar, Card and TabStrip components integrated.
35
+
***Grid and Menu Template** - A small application that contains Grid, Menu and Buttons as a base for your application.
36
+
***Dashboard Template** - It allows you to quickly develop dashboards and dashboard-like applications using the built-in TileLayout component.
37
+
32
38
The wizard detects all the installed versions of Telerik UI for ASP.NET MVC and lists them in the **Version** combobox. This enables you to select a version you want to apply to your project.
33
39
34
40

If set to `true` the column menu would allow the user to filter the grid. By default the column menu allows the user to filter if filtering is enabled via the [filterable](filterable).
@@ -3655,6 +3664,10 @@ For more information, please refer to the [Window configuration API](/api/javasc
3655
3664
});
3656
3665
</script>
3657
3666
3667
+
### encodeTitles `Boolean`*(default: false)*
3668
+
3669
+
If set to `true` the column title will be HTML-encoded before it is displayed. If set to `false` the column title will be displayed as is.
3670
+
3658
3671
### excel `Object`
3659
3672
3660
3673
Configures the Kendo UI Grid Excel export settings.
Copy file name to clipboardExpand all lines: docs/backwards-compatibility/2020-backward-compatibility.md
+57-1Lines changed: 57 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,62 @@ position: 1
10
10
11
11
This article lists the breaking changes in the Kendo UI 2020 releases.
12
12
13
+
## Kendo UI 2020 R3 SP1
14
+
15
+
**Upload**
16
+
17
+
Changed appearance in `Less-based themes` of the Upload action buttons that are rendered when the [async.autoUpload option](https://docs.telerik.com/kendo-ui/api/javascript/ui/upload/configuration/async.autoupload) is set to `false`.
18
+
19
+
Reverting to the previous appearance is possible by utilizing the following styles:
20
+
21
+
```
22
+
<style>
23
+
.k-upload .k-action-buttons {
24
+
padding: 0;
25
+
align-items: stretch;
26
+
border-bottom-right-radius: 0;
27
+
border-bottom-left-radius: 0;
28
+
border-width: 1px 0 0;
29
+
border-top-width: 1px;
30
+
border-style: solid;
31
+
display: flex;
32
+
flex-direction: row;
33
+
flex-shrink: 0;
34
+
flex-basis: auto;
35
+
overflow: hidden;
36
+
border-color: transparent;
37
+
}
38
+
39
+
.k-upload .k-action-buttons .k-button {
40
+
background-clip: border-box;
41
+
border-radius: 0;
42
+
margin: 0;
43
+
padding: 12px 16px;
44
+
border-width: 0;
45
+
text-overflow: ellipsis;
46
+
flex: 1 0 0%;
47
+
flex-grow: 1;
48
+
flex-grow: 1;
49
+
display: inline-block;
50
+
overflow: hidden;
51
+
width: auto;
52
+
max-width: 100%;
53
+
}
54
+
</style>
55
+
56
+
<input type="file" name="files" id="photos" />
57
+
58
+
<script>
59
+
$("#photos").kendoUpload({
60
+
async: {
61
+
saveUrl: "http://my-app.localhost/save",
62
+
removeUrl: "http://my-app.localhost/remove",
63
+
autoUpload: false
64
+
}
65
+
});
66
+
</script>
67
+
```
68
+
13
69
## Kendo UI 2020 R3
14
70
15
71
**Badge**
@@ -49,7 +105,7 @@ Deprecated configuration options and methods:
body="var found = date && window.kendo.jQuery.inArray(date.setHours(0, 0, 0, 0),["+disabledDates+"]) > -1;"+searchExpression;
1980
+
body="var clonedDate = new Date(date); var found = date && window.kendo.jQuery.inArray(clonedDate.setHours(0, 0, 0, 0),["+disabledDates+"]) > -1;"+searchExpression;
body="var found = date && window.kendo.jQuery.inArray(date.getDay(),["+disabledDates+"]) > -1;"+searchExpression;
1989
+
body="var clonedDate = new Date(date); var found = date && window.kendo.jQuery.inArray(clonedDate.getDay(),["+disabledDates+"]) > -1;"+searchExpression;
0 commit comments