Skip to content

Commit 3598e56

Browse files
author
User Jenkins
committed
Sync with Kendo UI Professional
1 parent aba95c0 commit 3598e56

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/knowledge-base/drag-and-drop-rows-between-two-grids.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ The following example demonstrates how to drag and drop rows between two Kendo U
7878
7979
8080
$(grid1.element).kendoDraggable({
81-
filter: "tr",
81+
filter: "tbody>tr",
8282
hint: function (e) {
8383
var item = $('<div class="k-grid k-widget" style="background-color: DarkOrange; color: black;"><table><tbody><tr>' + e.html() + '</tr></tbody></table></div>');
8484
return item;
@@ -88,7 +88,7 @@ The following example demonstrates how to drag and drop rows between two Kendo U
8888
8989
9090
$(grid2.element).kendoDraggable({
91-
filter: "tr",
91+
filter: "tbody>tr",
9292
hint: function (e) {
9393
var item = $('<div class="k-grid k-widget" style="background-color: MediumVioletRed; color: black;"><table><tbody><tr>' + e.html() + '</tr></tbody></table></div>');
9494
return item;

styles/web/Default/taskboard/_layout.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@
218218
}
219219

220220
.k-taskboard-column-cards-container {
221-
margin-bottom: 3 * @taskboard-column-container-spacing-y;
221+
margin-bottom: calc(3 * @taskboard-column-container-spacing-y);
222222
}
223223

224224
.k-taskboard-column-cards > .k-taskboard-card:not(:last-child) {

typescript/kendo.all.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for Kendo UI Professional v2021.2.511
1+
// Type definitions for Kendo UI Professional v2021.2.616
22
// Project: http://www.telerik.com/kendo-ui
33
// Definitions by: Telerik <https://github.com/telerik>
44
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

0 commit comments

Comments
 (0)