Skip to content

Commit 5031b3b

Browse files
committed
Sync with Kendo UI Professional
1 parent 225a78a commit 5031b3b

File tree

8 files changed

+55
-61
lines changed

8 files changed

+55
-61
lines changed

docs-aspnet/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,8 @@ navigation:
475475
title: "State Management"
476476
"*how-to":
477477
title: "How To"
478+
"*propertygrid":
479+
title: "PropertyGrid"
478480
"*grid":
479481
title: "Grid"
480482
"*drawer":
@@ -620,8 +622,6 @@ navigation:
620622
title: "PivotGrid"
621623
"*pivotgridv2":
622624
title: "PivotGridV2"
623-
"*propertygrid":
624-
title: "PropertyGrid"
625625
"*scheduler":
626626
title: "Scheduler"
627627
"*scrollview":

docs-aspnet/html-helpers/data-management/propertygrid/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ In addition, you can control the width and height of the PropertyGrid by setting
358358
```
359359
{% endif %}
360360

361-
## 5. Handle the PropertyGrid Events
361+
## 6. Handle the PropertyGrid Events
362362

363363
The PropertyGrid exposes events that you can handle and further customize the functionality of the component. In this tutorial, you will use the exposed `Edit` event to log the current state of the model in the browser's console.
364364

@@ -395,7 +395,7 @@ The PropertyGrid exposes events that you can handle and further customize the fu
395395
```
396396
{% endif %}
397397

398-
## 6. (Optional) Reference Existing PropertyGrid Instances
398+
## 7. (Optional) Reference Existing PropertyGrid Instances
399399

400400
Referencing existing component instances allows you to build on top of their configuration. To reference an existing PropertyGrid instance, use the [`jQuery.data()`](http://api.jquery.com/jQuery.data/) method.
401401

package-lock.json

Lines changed: 42 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
"version": "1.0.0",
1212
"devDependencies": {
1313
"@progress/kendo-svg-icons": "2.3.0",
14-
"@progress/kendo-theme-bootstrap": "8.0.0-dev.9",
15-
"@progress/kendo-theme-classic": "8.0.0-dev.9",
16-
"@progress/kendo-theme-core": "8.0.0-dev.9",
17-
"@progress/kendo-theme-default": "8.0.0-dev.9",
18-
"@progress/kendo-theme-fluent": "8.0.0-dev.9",
19-
"@progress/kendo-theme-material": "8.0.0-dev.9",
20-
"@progress/kendo-theme-utils": "8.0.0-dev.9",
14+
"@progress/kendo-theme-bootstrap": "8.0.0-dev.10",
15+
"@progress/kendo-theme-classic": "8.0.0-dev.10",
16+
"@progress/kendo-theme-core": "8.0.0-dev.10",
17+
"@progress/kendo-theme-default": "8.0.0-dev.10",
18+
"@progress/kendo-theme-fluent": "8.0.0-dev.10",
19+
"@progress/kendo-theme-material": "8.0.0-dev.10",
20+
"@progress/kendo-theme-utils": "8.0.0-dev.10",
2121
"@progress/wct-a11y-spec": "^2.0.9",
2222
"@rollup/plugin-node-resolve": "^13.3.0",
2323
"@rollup/plugin-virtual": "^2.1.0",

src/kendo.button.menu.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var __meta__ = {
5151

5252
var cssClasses = {
5353
popup: "k-menu-popup",
54-
list: "k-group k-menu-group k-reset",
54+
list: "k-menu-group",
5555
listItem: "k-item k-menu-item",
5656
menuItem: "k-menu-item",
5757
itemText: "k-menu-link-text",
@@ -262,8 +262,6 @@ var __meta__ = {
262262
adjustPopupWidth: function(width) {
263263
var that = this;
264264

265-
that.element.addClass("k-split-wrapper");
266-
267265
that.element.css({
268266
"min-width": width
269267
});

tests/dropdownbutton/initialization.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@
115115
var dropDownButton = new DropDownButton(button, { items: defaultItems });
116116

117117
assert.isOk(dropDownButton.menu.list.hasClass("k-menu-group"));
118-
assert.isOk(dropDownButton.menu.list.hasClass("k-group"));
119118
assert.equal(dropDownButton.menu.list.attr("id"), "buttonElm_buttonmenu");
120119
});
121120

tests/splitbutton/initialization.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@
174174
var splitButton = new SplitButton(button, { items: defaultItems });
175175

176176
assert.isOk(splitButton.menu.list.hasClass("k-menu-group"));
177-
assert.isOk(splitButton.menu.list.hasClass("k-group"));
178177
assert.equal(splitButton.menu.list.attr("id"), "buttonElm_buttonmenu");
179178
});
180179

tests/toolbar/rendering.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1746,7 +1746,7 @@
17461746
assert.isOk(splitButton.hasClass("k-rounded-md"));
17471747
});
17481748

1749-
it("split container has k-group k-menu-group k-reset k-menu-group-md classes", function() {
1749+
it("split container has k-menu-group k-menu-group-md classes", function() {
17501750
container.kendoToolBar({
17511751
items: [
17521752
{
@@ -1762,9 +1762,7 @@
17621762

17631763
var splitContainer = $("[data-role=buttonmenu] > ul");
17641764

1765-
assert.isOk(splitContainer.hasClass("k-group"));
17661765
assert.isOk(splitContainer.hasClass("k-menu-group"));
1767-
assert.isOk(splitContainer.hasClass("k-reset"));
17681766
assert.isOk(splitContainer.hasClass("k-menu-group-md"));
17691767
});
17701768

0 commit comments

Comments
 (0)