Skip to content

Commit c8baa60

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent a6f05cc commit c8baa60

File tree

5 files changed

+25
-3
lines changed

5 files changed

+25
-3
lines changed

docs/api/javascript/ui/treelist.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -592,6 +592,7 @@ The field to which the column is bound. The value of this field is displayed by
592592

593593
#### Example - specify the column field
594594

595+
<div id="treelist"></div>
595596
<script>
596597
$("#treelist").kendoTreeList({
597598
columns: [
@@ -616,6 +617,7 @@ Can be set to a JavaScript object which represents the filter menu configuration
616617

617618
#### Example - disable filtering
618619

620+
<div id="treelist"></div>
619621
<script>
620622
$("#treelist").kendoTreeList({
621623
columns: [
@@ -1604,6 +1606,7 @@ Can be set to a JavaScript object which represents the editing configuration.
16041606
16051607
#### Example - enable editing
16061608

1609+
<div id="treelist"></div>
16071610
<script>
16081611
var crudServiceBaseUrl = "https://demos.telerik.com/kendo-ui/service";
16091612

@@ -1652,6 +1655,7 @@ Can be set to a JavaScript object which represents the editing configuration.
16521655

16531656
#### Example - enable popup editing
16541657

1658+
<div id="treelist"></div>
16551659
<script>
16561660
var crudServiceBaseUrl = "https://demos.telerik.com/kendo-ui/service";
16571661

@@ -1706,6 +1710,7 @@ The editing mode to use. The supported editing modes are "inline", "popup" and "
17061710
17071711
#### Example - specify inline editing mode
17081712

1713+
<div id="treelist"></div>
17091714
<script>
17101715
var crudServiceBaseUrl = "https://demos.telerik.com/kendo-ui/service";
17111716

@@ -1760,6 +1765,8 @@ Enables drag&drop UI of rows between parents.
17601765

17611766
#### Example - use drag&drop for editing row parent node
17621767

1768+
<div id="treelist"></div>
1769+
<script>
17631770
var service = "https://demos.telerik.com/kendo-ui/service";
17641771

17651772
$("#treelist").kendoTreeList({
@@ -4882,6 +4889,7 @@ A string, DOM element or jQuery object which represents the parent table row. A
48824889

48834890
#### Example - add a new root data item
48844891

4892+
<div id="treelist"></div>
48854893
<script>
48864894
var crudServiceBaseUrl = "https://demos.telerik.com/kendo-ui/service";
48874895

docs/knowledge-base/pager-responsive-numbers-sass-themes.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ How can I make the Pager show a drop-down list with the pages when the Grid is s
2424

2525
## Solution
2626

27+
> **Important**
28+
>
29+
> This functionality is available out of the box since R1 2019
30+
2731
Unlike the functionality in the LESS themes, in the SASS themes the Pager does not change to a drop-down list automatically. To work around this issue, use either the Kendo UI Default (v2) or the Kendo UI Bootstrap (v4) theme. Depending on your project and scenario, you may need to adjust the CSS.
2832

2933
### Using Default (v2) Theme
@@ -157,7 +161,7 @@ For the full implementation of this approach, refer to [this runnable example](h
157161
}
158162
159163
.k-state-expanded li:not(.k-current-page) .k-link {
160-
border: none;
164+
border: none;
161165
}
162166
163167
.k-pager-numbers.k-state-expanded .k-current-page {

styles/web/common/spreadsheet.less

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,6 @@
118118

119119
.k-select {
120120
border-radius: 0;
121-
margin: -1px -1px -1px 0;
122-
padding: 1px 1px 1px 0;
123121
}
124122
}
125123
}
@@ -189,6 +187,11 @@
189187
> .k-spreadsheet-view {
190188
position: relative;
191189
.force-font();
190+
191+
// disabled cells in the Spreadsheet should allow navigation if link is used
192+
.k-state-disabled {
193+
pointer-events: auto;
194+
}
192195
}
193196

194197
.k-tabstrip-wrapper {

styles/web/type-bootstrap.less

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3236,6 +3236,9 @@ td.k-state-focused.k-state-selected,
32363236
&[data-property='fontFamily'] { width: 130px; }
32373237
}
32383238
}
3239+
.k-spreadsheet-name-editor .k-select {
3240+
background-color: @button-hover-background-color;
3241+
}
32393242

32403243
.k-window .k-popup-edit-form .k-edit-field {
32413244
input.k-checkbox {

styles/web/type-fiori.less

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3130,6 +3130,10 @@ div.k-window.k-state-focused
31303130

31313131
@import "themes/spreadsheet.less";
31323132

3133+
.k-spreadsheet-name-editor .k-select {
3134+
background-color: @button-hover-background-color;
3135+
}
3136+
31333137
@spreadsheet-cell-border: darken(@background, 13%);
31343138

31353139
.k-window .k-popup-edit-form .k-edit-field {

0 commit comments

Comments
 (0)