Skip to content

Commit af0e394

Browse files
committed
Sync with Kendo UI Professional
1 parent 7a5d98f commit af0e394

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

docs-aspnet/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -786,13 +786,13 @@ navigation:
786786
baseurl: /aspnet-core
787787

788788
## The Kendo UI version used
789-
cdnVersion: "2025.2.520"
789+
cdnVersion: "2025.2.702"
790790

791791
## The themes CDN used
792792
themesCdnVersion: "11.0.2"
793793

794794
## The MVC Core version used
795-
mvcCoreVersion: "2025.2.520"
795+
mvcCoreVersion: "2025.2.702"
796796

797797
productCode: UIASPCORE
798798

docs/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ navigation:
615615
baseurl: /kendo-ui
616616

617617
## The Kendo UI version used
618-
cdnVersion: "2025.2.520"
618+
cdnVersion: "2025.2.702"
619619

620620
## The themes CDN used
621621
themesCdnVersion: "11.0.2"
@@ -624,7 +624,7 @@ themesCdnVersion: "11.0.2"
624624
pdfjsCdnVersion: "4.6.82"
625625

626626
## The MVC Core version used
627-
mvcCoreVersion: "2025.2.520"
627+
mvcCoreVersion: "2025.2.702"
628628

629629
## Progress NPM Registry
630630
registry_url: 'https://registry.npm.telerik.com/'

src/kendo.menu.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,13 @@ export const __meta__ = {
398398
result.push(popup);
399399
}
400400
opener = popup.find(popupOpenerSelector());
401-
popupId = opener.data(POPUP_OPENER_ATTR);
401+
402+
if (opener && opener.length && opener.length > 1) {
403+
result.push(...getChildPopups(popup, overflowWrapper));
404+
popupId = null;
405+
} else {
406+
popupId = opener.data(POPUP_OPENER_ATTR);
407+
}
402408
}
403409
});
404410

@@ -2832,7 +2838,6 @@ export const __meta__ = {
28322838

28332839
close: function() {
28342840
var that = this;
2835-
28362841
if (contains(that.element[0], $(arguments[0])[0]) || that._itemHasChildren(arguments[0])) {
28372842
Menu.fn.close.call(that, arguments[0]);
28382843
} else {

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 v2025.2.520
1+
// Type definitions for Kendo UI Professional v2025.2.702
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)