Skip to content

Commit 4eb310d

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 1eaa37e commit 4eb310d

File tree

6 files changed

+2557
-2547
lines changed

6 files changed

+2557
-2547
lines changed

docs/api/javascript/ui/grid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2379,7 +2379,7 @@ The text that is displayed in the column header cell. If not set the [field](col
23792379

23802380
### columns.width `String|Number`
23812381

2382-
The width of the column. Numeric values are treated as pixels. **For more important information, please refer to [Column Widths](/controls/data-management/grid/appearance#column-widths)**.
2382+
The width of the column. Numeric values are treated as pixels. **For more important information, please refer to [Column Widths](/controls/data-management/grid/columns/widths)**.
23832383

23842384
#### Example - set the column width as a string
23852385

docs/controls/data-management/grid/columns/widths.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Widths
33
page_title: jQuery Grid Documentation | Column Widths | Kendo UI
44
description: "Get started with the jQuery Grid by Kendo UI and learn how to modify its column widths."
5-
previous_url: /appearance/columns/widths
5+
previous_url: /appearance/columns/widths, /appearance/height#column-widths
66
slug: column_widths_kendoui_grid_widget
77
position: 1
88
---

src/kendo.multiselect.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,9 @@ var __meta__ = { // jshint ignore:line
372372
var value = listView.value()[position];
373373
var dataItem = that.listView.selectedDataItems()[position];
374374
var customIndex = that._customOptions[value];
375+
var listViewChildren = listView.element[0].children;
375376
var option;
377+
var listViewChild;
376378

377379
if (that.trigger(DESELECT, { dataItem: dataItem, item: tag })) {
378380
that._close();
@@ -398,8 +400,11 @@ var __meta__ = { // jshint ignore:line
398400
option = that.element[0].children[customIndex];
399401
option.selected = false;
400402

401-
listView._deselect([customIndex]);
402403
listView.removeAt(position);
404+
listViewChild = listViewChildren[customIndex];
405+
if (listViewChild) {
406+
listViewChildren[customIndex].classList.remove("k-state-selected");
407+
}
403408
tag.remove();
404409
done();
405410
}

0 commit comments

Comments
 (0)