Skip to content

Commit 88ad05e

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent db1b114 commit 88ad05e

File tree

13 files changed

+1815
-1809
lines changed

13 files changed

+1815
-1809
lines changed

docs/api/javascript/dataviz/ui/chart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32926,7 +32926,7 @@ Specifies if the chart can be zoomed.
3292632926
});
3292732927
</script>
3292832928

32929-
### zoomable.mousewheel `Boolean|Object`
32929+
### zoomable.mousewheel `Boolean|Object` *(default: true)*
3293032930

3293132931
Specifies if the chart can be zoomed using the mouse wheel.
3293232932

@@ -32966,7 +32966,7 @@ Specifies an axis that should not be zoomed. The supported values are `none`, `x
3296632966
});
3296732967
</script>
3296832968

32969-
### zoomable.selection `Boolean|Object`
32969+
### zoomable.selection `Boolean|Object` *(default: true)*
3297032970

3297132971
Specifies if the chart can be zoomed using selection.
3297232972

docs/api/javascript/ui/gantt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ If set to `true` the user could sort this column by clicking its header cells. B
600600
});
601601
</script>
602602

603-
### currentTimeMarker `Boolean|Object`
603+
### currentTimeMarker `Boolean|Object` *(default: true)*
604604

605605
If set to `false` the "current time" marker of the Gantt would not be displayed.
606606

docs/api/javascript/ui/menu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Menu
33
page_title: Configuration, methods and events of Kendo UI Menu
44
description: How to configure all animations in Menu UI widget, enable and disable, remove specified items and use code examples for all methods and events supported.
55
res_type: api
6-
component: menu
6+
component: menu
77
---
88

99
# kendo.ui.Menu
@@ -526,7 +526,7 @@ its parent horizontally. You can also switch off the screen boundary detection c
526526
});
527527
</script>
528528

529-
### scrollable `Boolean|Object`
529+
### scrollable `Boolean|Object` *(default: false)*
530530

531531
If enabled, the Menu displays buttons that scroll the items when they cannot fit the width or the popups' height of the Menu. By default, scrolling is disabled.
532532

docs/api/javascript/ui/notification.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -407,15 +407,15 @@ of each member of the collection, returned by the `getNotifications()` method. I
407407

408408
<span id="notification"></span>
409409
<button id="removeMessages" type="button" class="k-button">Remove messages and show new ones</button>
410-
410+
411411
<script>
412-
412+
413413
var notificationWidget = $("#notification").kendoNotification({
414414
button: false,
415415
hideOnClick: false,
416416
autoHideAfter: 0
417417
}).data("kendoNotification");
418-
418+
419419
var messageCount = 1;
420420

421421
notificationWidget.show("foo " + messageCount);
@@ -425,19 +425,19 @@ of each member of the collection, returned by the `getNotifications()` method. I
425425
// since there is no way for the user to hide notifications,
426426
// the following expression will return two elements, no matter when it is executed
427427
var elements = notificationWidget.getNotifications();
428-
428+
429429
// remove the two messages from the DOM
430430
elements.each(function(){
431431
$(this).parent().remove();
432432
});
433-
433+
434434
messageCount++;
435-
435+
436436
// show two new messages
437437
notificationWidget.show("foo " + messageCount);
438438
notificationWidget.show("bar " + messageCount);
439439
});
440-
440+
441441
</script>
442442

443443
#### Returns
@@ -518,7 +518,7 @@ If this argument is not supplied, then `"info"` is assumed.
518518
template: "<div>System alert: #= myMessage #</div>"
519519
}]
520520
}).data("kendoNotification");
521-
521+
522522
notificationWidget.show(getNotificationMessage(), "myAlert");
523523
</script>
524524

@@ -605,7 +605,7 @@ The jQuery object, which wraps the element being hidden.
605605
$("#notification").kendoNotification({
606606
hide: onHide
607607
});
608-
608+
609609
$("#notification").getKendoNotification().show("Kendo Notification");
610610
</script>
611611

@@ -631,6 +631,6 @@ The jQuery object, which wraps the element being displayed.
631631
$("#notification").kendoNotification({
632632
show: onShow
633633
});
634-
634+
635635
$("#notification").getKendoNotification().show("Kendo Notification");
636636
</script>

docs/api/javascript/ui/popup.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ Re-positions the popup element
281281
$("#popup").kendoPopup();
282282

283283
var popup = $("#popup").data("kendoPopup");
284-
284+
285285
popup.open();
286286
popup.position();
287287
</script>
@@ -308,7 +308,7 @@ The new configuration options.
308308
origin: "top left",
309309
position: "bottom left"
310310
});
311-
311+
312312
popup.open();
313313
</script>
314314

@@ -365,7 +365,7 @@ The widget instance which fired the event.
365365
popup.bind("activate", function(e) {
366366
console.log(e.sender.element[0]);
367367
});
368-
368+
369369
popup.open();
370370
</script>
371371

@@ -401,7 +401,7 @@ The widget instance which fired the event.
401401
popup.bind("close", function(e) {
402402
e.preventDefault(); //prevent popup closing
403403
});
404-
404+
405405
popup.open();
406406
</script>
407407

@@ -437,7 +437,7 @@ The widget instance which fired the event.
437437
popup.bind("deactivate", function(e) {
438438
console.log(e.sender.element[0]);
439439
});
440-
440+
441441
popup.open();
442442
</script>
443443

@@ -473,6 +473,6 @@ The widget instance which fired the event.
473473
popup.bind("open", function(e) {
474474
e.preventDefault(); //prevent popup opening
475475
});
476-
476+
477477
popup.open();
478478
</script>

docs/api/javascript/ui/progressbar.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: ProgressBar
33
page_title: Configuration, fields, methods and events of Kendo UI ProgressBar
44
description: How to configure and control Kendo UI ProgressBar widget
55
res_type: api
6-
component: progressbar
6+
component: progressbar
77
---
88

99
# kendo.ui.ProgressBar
@@ -12,7 +12,7 @@ Represents the Kendo UI ProgressBar widget. Inherits from [Widget](/api/javascri
1212

1313
## Configuration
1414

15-
### animation `Object`
15+
### animation `Boolean|Object`
1616

1717
Configures the progress animation. Currently only the duration of the animation could be set.
1818

@@ -22,9 +22,9 @@ Configures the progress animation. Currently only the duration of the animation
2222
<script>
2323
$("#progressbar").kendoProgressBar({
2424
animation: {
25-
duration: 500
25+
duration: 500
2626
}
27-
});
27+
});
2828
</script>
2929

3030
#### Example - disable the progress animation
@@ -46,10 +46,10 @@ The duration of each progress animation in milliseconds.
4646
<script>
4747
$("#progressbar").kendoProgressBar({
4848
animation: {
49-
duration: 800
49+
duration: 800
5050
}
51-
});
52-
</script>
51+
});
52+
</script>
5353

5454
### chunkCount `Number` *(default: 5)*
5555

@@ -64,7 +64,7 @@ Specifies the number of chunks.
6464
$("#progressbar").kendoProgressBar({
6565
type: "chunk",
6666
chunkCount: 10
67-
});
67+
});
6868
</script>
6969

7070
### enable `Boolean` *(default: true)*
@@ -77,7 +77,7 @@ If set to `false` the widget will be disabled. It will still allow changing the
7777
<script>
7878
$("#progressbar").kendoProgressBar({
7979
enable: false
80-
});
80+
});
8181
</script>
8282

8383
### max `Number` *(default: 100)*
@@ -91,7 +91,7 @@ The maximum value of the **ProgressBar**.
9191
$("#progressbar").kendoProgressBar({
9292
max: 10,
9393
value: 5
94-
});
94+
});
9595
</script>
9696

9797
### min `Number` *(default: 0)*
@@ -103,9 +103,9 @@ The minimum value of the **ProgressBar**.
103103
<div id="progressbar"></div>
104104
<script>
105105
$("#progressbar").kendoProgressBar({
106-
min: 10,
106+
min: 10,
107107
max: 50
108-
});
108+
});
109109
</script>
110110

111111
### orientation `String` *(default: "horizontal")*
@@ -118,7 +118,7 @@ The orientation of the **ProgressBar**. Possible values are **horizontal** and *
118118
<script>
119119
$("#progressbar").kendoProgressBar({
120120
orientation: "vertical"
121-
});
121+
});
122122
</script>
123123

124124
### reverse `Boolean` *(default: false)*
@@ -131,7 +131,7 @@ Specifies if the progress direction will be reversed.
131131
<script>
132132
$("#progressbar").kendoProgressBar({
133133
reverse: true
134-
});
134+
});
135135
</script>
136136

137137
### showStatus `Boolean` *(default: true)*
@@ -144,7 +144,7 @@ Specifies if the progress status will be shown.
144144
<script>
145145
$("#progressbar").kendoProgressBar({
146146
showStatus: false
147-
});
147+
});
148148
</script>
149149

150150
### type `String` *(default: "value")*
@@ -157,8 +157,8 @@ Specifies the type of the **ProgressBar**. The supported types are **value**, **
157157
<script>
158158
$("#progressbar").kendoProgressBar({
159159
type: "percent"
160-
});
161-
</script>
160+
});
161+
</script>
162162

163163
### value `Number`
164164

@@ -172,7 +172,7 @@ The underlying value of the **ProgressBar**. It should be a number or `false`. S
172172
min: 10,
173173
max: 20,
174174
value: 15
175-
});
175+
});
176176
</script>
177177

178178
## Fields

docs/api/javascript/ui/scheduler.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ data source is fired. By default the widget will bind to the data source specifi
112112
});
113113
</script>
114114

115-
### currentTimeMarker `Boolean|Object`
115+
### currentTimeMarker `Boolean|Object` *(default: true)*
116116

117117
If set to `false` the "current time" marker of the scheduler would not be displayed.
118118

docs/api/javascript/ui/tabstrip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ Specifies whether the TabStrip should be keyboard navigatable.
427427
});
428428
</script>
429429

430-
### scrollable `Boolean|Object`
430+
### scrollable `Boolean|Object` *(default: true)*
431431

432432
If enabled, the TabStrip will display buttons that will scroll the tabs horizontally, when they cannot fit the TabStrip width. By default scrolling is enabled.
433433

docs/api/javascript/ui/tooltip.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Tooltip
33
page_title: Configuration, methods and events of Kendo UI Tooltip
44
res_type: api
5-
component: tooltip
5+
component: tooltip
66
---
77

88
# kendo.ui.Tooltip
@@ -380,7 +380,7 @@ The event on which the Tooltip will be shown. Predefined values are "mouseenter"
380380
});
381381
});
382382
</script>
383-
383+
384384
#### Example - set multiple events on which the Tooltip will be shown
385385

386386
<span id="target" title="Tooltip content">
@@ -402,7 +402,7 @@ The event on which the Tooltip will be shown. Predefined values are "mouseenter"
402402
Holds the Kendo UI [`Popup`](/api/javascript/ui/popup) instance, which manages the showing and hiding of the tooltips at the appropriate position.
403403

404404
The `popup` field can be used to apply custom CSS classes and styles, or any other attributes to the Popup's [`element` or `wrapper`](/intro/widget-basics/wrapper-element).
405-
405+
406406
## Methods
407407

408408
### show

docs/api/javascript/ui/treeview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ If set to `true` the widget will auto-scroll the containing element when the mou
223223
}
224224
</style>
225225

226-
### checkboxes `Boolean|Object`
226+
### checkboxes `Boolean|Object` *(default: false)*
227227

228228
If `true` or an object, renders checkboxes beside each node.
229229

0 commit comments

Comments
 (0)