Skip to content

Commit 74c553c

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 714f636 commit 74c553c

File tree

8 files changed

+80
-10
lines changed

8 files changed

+80
-10
lines changed

docs-aspnet/html-helpers/navigation/bottomnavigation/appearance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ position: 3
88

99
# Appearance
1010

11-
The Telerik BottomNavigation HtmlHelper for {{ site.framework }} allows you to alter the appearance of the widget by setting its [itemFlow](/api/javascript/ui/bottomnavigation/configuration/itemflow), [themeColor](/api/javascript/ui/bottomnavigation/configuration/themeColor), [border](/api/javascript/ui/bottomnavigation/configuration/border), [shadow](/api/javascript/ui/bottomnavigation/configuration/shadow) and [fill](/api/javascript/ui/bottomnavigation/configuration/fill) options.
11+
The Telerik BottomNavigation HtmlHelper for {{ site.framework }} allows you to alter the appearance of the component by setting its [ItemFlow](/api/javascript/ui/bottomnavigation/configuration/itemflow), [ThemeColor](/api/javascript/ui/bottomnavigation/configuration/themeColor), [Border](/api/javascript/ui/bottomnavigation/configuration/border), [Shadow](/api/javascript/ui/bottomnavigation/configuration/shadow) and [Fill](/api/javascript/ui/bottomnavigation/configuration/fill) options.
1212

1313
The example below demonstrates how to modify the appearance by using the above settings:
1414

docs-aspnet/html-helpers/navigation/bottomnavigation/items.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ position: 2
88

99
# Items
1010

11-
The `items` configuration allows you to set specific attributes of the BottomNavigation items. You can set their text (optionally) and icon. The configuration also allows you to add classes for the different items that are rendered when initializing the component. You can also set the selected and enabled state for the items.
11+
The `Items` configuration allows you to set specific attributes of the BottomNavigation items. You can set their text (optionally) and icon. The configuration also allows you to add classes for the different items that are rendered when initializing the component. You can also set the selected and enabled state for the items.
1212

1313
> **Note:** When the `Items.Url` configuration is set, the items will be rendered as `<a>` tags. Otherwise, they will be rendered as `<span>` tags.
1414
15-
The following example demonstrates how to set the attributes of the BottomNavigation items through the `items` configuration:
15+
The following example demonstrates how to set the attributes of the BottomNavigation items through the `Items` configuration:
1616

1717
```Razor
1818
@(Html.Kendo().BottomNavigation()

docs-aspnet/redirects.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ rewrite ^/aspnet-mvc/helpers/(progressbar|sortable)/(.*)$
6161
/aspnet-mvc/helpers/interactivity/$1/$2
6262
permanent;
6363

64-
rewrite ^/aspnet-mvc/helpers/(dialog|notification|splitter|tooltip|window)/(.*)$
64+
rewrite ^/aspnet-mvc/helpers/(dialog|form|notification|splitter|tooltip|window)/(.*)$
6565
/aspnet-mvc/helpers/layout/$1/$2
6666
permanent;
6767

docs-aspnet/tag-helpers/navigation/bottomnavigation/appearance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ position: 3
88

99
# Appearance
1010

11-
The Telerik BottomNavigation HtmlHelper for {{ site.framework }} allows you to alter the appearance of the widget by setting its [itemFlow](/api/javascript/ui/bottomnavigation/configuration/itemflow), [themeColor](/api/javascript/ui/bottomnavigation/configuration/themeColor), [border](/api/javascript/ui/bottomnavigation/configuration/border), [shadow](/api/javascript/ui/bottomnavigation/configuration/shadow) and [fill](/api/javascript/ui/bottomnavigation/configuration/fill) options.
11+
The Telerik BottomNavigation TagHelper for {{ site.framework }} allows you to alter the appearance of the component by setting its [item-flow](/api/javascript/ui/bottomnavigation/configuration/itemflow), [theme-color](/api/javascript/ui/bottomnavigation/configuration/themeColor), [border](/api/javascript/ui/bottomnavigation/configuration/border), [shadow](/api/javascript/ui/bottomnavigation/configuration/shadow) and [fill](/api/javascript/ui/bottomnavigation/configuration/fill) options.
1212

1313
The example below demonstrates how to modify the appearance by using the above settings:
1414

docs-aspnet/tag-helpers/navigation/bottomnavigation/templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ position: 4
88

99
# Templates
1010

11-
The Telerik BottomNavigation HtmlHelper for {{ site.framework }} provides full control over the rendering of the items by using Kendo UI templates.
11+
The Telerik BottomNavigation TagHelper for {{ site.framework }} provides full control over the rendering of the items by using Kendo UI templates.
1212

1313
Visit the [Demo page for the BottomNavigation](https://demos.telerik.com/{{ site.platform }}/bottomnavigation/templates) to see it in action.
1414

docs/api/javascript/ui/filemanager.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,9 @@ Enables or disables the drag and drop features of the FileManager.
131131

132132
Sets the [FileManagerDataSource](/api/javascript/data/filemanagerdatasource) of the FileManager. Can be bound to a remote service or local data.
133133

134+
> When using the transport options as functions the target parameter will not be sent automatically due to the DataSource not calling the [parameterMap method](/api/javascript/data/datasource/configuration/transport.parametermap).
135+
> You can call it within your function to pass the required data - Example - read as function.
136+
134137
#### Example
135138

136139
<div id="fileManager"></div>
@@ -161,6 +164,72 @@ Sets the [FileManagerDataSource](/api/javascript/data/filemanagerdatasource) of
161164
});
162165
</script>
163166

167+
#### Example - transport with functions.
168+
169+
<div id="fileManager"></div>
170+
<script>
171+
var baseUrl = "https://demos.telerik.com/kendo-ui/service/filemanager/";
172+
173+
$("#fileManager").kendoFileManager({
174+
dataSource: {
175+
transport: {
176+
read: function(options) {
177+
var that = this;
178+
179+
$.ajax({
180+
url: baseUrl + "Read",
181+
dataType: "json",
182+
method: "POST",
183+
data: that.parameterMap ? that.parameterMap(options.data, "read") : options.data,
184+
success: function(result) {
185+
options.success(result);
186+
}
187+
});
188+
},
189+
update: function(options) {
190+
var that = this;
191+
192+
$.ajax({
193+
url: baseUrl + "Update",
194+
dataType: "json",
195+
method: "POST",
196+
data: that.parameterMap ? that.parameterMap(options.data, "read") : options.data,
197+
success: function(result) {
198+
options.success(result);
199+
}
200+
});
201+
},
202+
create: function(options) {
203+
var that = this;
204+
205+
$.ajax({
206+
url: baseUrl + "Update",
207+
dataType: "json",
208+
method: "POST",
209+
data: that.parameterMap ? that.parameterMap(options.data, "read") : options.data,
210+
success: function(result) {
211+
options.success(result);
212+
}
213+
});
214+
},
215+
destroy: function(options) {
216+
var that = this;
217+
218+
$.ajax({
219+
url: baseUrl + "Destroy",
220+
dataType: "json",
221+
method: "POST",
222+
data: that.parameterMap ? that.parameterMap(options.data, "read") : options.data,
223+
success: function(result) {
224+
options.success(result);
225+
}
226+
});
227+
}
228+
}
229+
}
230+
});
231+
</script>
232+
164233
#### Example
165234

166235
<div id="fileManager"></div>

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"version": "1.0.0",
1212
"dependencies": {},
1313
"devDependencies": {
14-
"@progress/kendo-theme-bootstrap": "4.24.0",
15-
"@progress/kendo-theme-default": "4.26.0",
16-
"@progress/kendo-theme-material": "3.22.0",
14+
"@progress/kendo-theme-bootstrap": "4.30.0",
15+
"@progress/kendo-theme-default": "4.32.0",
16+
"@progress/kendo-theme-material": "3.28.0",
1717
"amd-optimize": "0.6.1",
1818
"autoprefixer": "^9.1.5",
1919
"bootstrap": "^4.0.0",

styles/web/Default/window/_layout.less

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ each(@window-sizes, {
7878

7979
// Title bar actions
8080
.k-window-titlebar .k-window-actions {
81-
// margin: -.25em 0;
81+
margin: 0 calc( @window-titlebar-padding-x / -2 );
82+
margin-inline-end: calc( @window-titlebar-padding-x / -2 );
8283
display: flex;
8384
flex-flow: row nowrap;
8485
flex-shrink: 0;

0 commit comments

Comments
 (0)