Skip to main content

Migration to newer versions

8.1 -> 8.2

DataCollection/TreeCollection

Before v8.2, the smartFilter property of the filter() method defined whether a filtering rule will be applied after adding and editing items of the collection.

Since v8.2 this property is deprecated and replaced with the permanent one. All active filters are stored in DataCollection/TreeCollection and will be automatically applied once again after calling the add/update/parse methods.

Besides, the id property has been added into the configuration object of the filter() method.

7.3 -> 8.0

Grid/TreeGrid

Before v8.0, the getHeaderFilter() method returned either an HTML element or an object with Combobox configuration. That allowed you to set focus on the filter or remove it:

const countryFilter = grid.getHeaderFilter("country");
// -> HTMLElement
// <label className="dhx_grid-filter__label dxi dxi-menu-down">...</label>

countryFilter.focus();
countryFilter.blur();

// or

const countryFilter = grid.getHeaderFilter("density");
// -> object of Combobox
// Combobox {_uid: "u1597304021754", config: {…}, events: EventSystem,
// data: DataCollection, popup: Popup, …}

countryFilter.focus();

In v8.0, we've improved the way of work with the filter. Now the getHeaderFilter() method returns an object with a set of methods which allow you to get an object of the filter, to set/remove focus from the filter, to set a value by which a column will be filtered or to clear this value.

If you need to get an HTML object or an object with configuration of Combobox, apply the getFilter() method of the header filter object:

const filter1 = grid.getHeaderFilter("country").getFilter();
console.log(filter1);
// -> returns Combobox
// {config: {…}, _uid: 'u1670500020936', events: o, data: d, popup: f, …}


const filter2 = grid.getHeaderFilter("netChange").getFilter();
console.log(filter2);
// -> returns HTML object
// {type: 1, attrs: {…}, tag: 'div', _class: 'dhx_grid-filter__label dxi dxi-magnify',
// ref: 'netChange_filter', …}

Message box

Before v8.0, the dhx.message() constructor just added a new element to DOM.

Starting from v8.0, the constructor looks like dhx.message(): {close() => void};. It will return an object with the method which allows calling a function to remove the element from DOM.

Before v8.0
const message = dhx.message({
text: "Message text",
icon: "dxi-clock",
css: "expire",
expire: 1000
});

console.log(message); // -> undefined
From v8.0
const message = dhx.message({
text: "Message text",
icon: "dxi-clock",
css: "expire",
expire: 1000
});

console.log(message); // -> {close: function}

7.1 -> 7.2

Combobox

The open event has been deprecated in v7.2. The new beforeOpen and afterOpen events have been added.

Before v7.2
// the "open" event
combo.events.on("open", function(){
// your logic here
});
From v7.2
// the "beforeOpen" event
combo.events.on("beforeOpen", function() {
// your logic here
return false;
});

// the "afterOpen" event
combo.events.on("afterOpen", function() {
// your logic here
});

Though the open event remains backward compatible with previous versions, you'd better use the afterOpen event instead.

7.0 -> 7.1

Grid/TreeGrid

  1. Since v7.1, the dateFormat configuration option of the column has been deprecated. Though the support of the option continues, we recommend that you use the format option together with type: "date" instead.
Before v7.1
{ 
width: 150, id: "start_date",
header: [{ text: "Calendar", colspan: 2 }, { text: "Start date" }],
type: "date", dateFormat: "%d/%m/%Y"
}
From v7.1
{ 
width: 150, id: "date", header: [{ text: "Date" }],
type: "date", format: "%M.%d.%Y"
}
  1. The sort event has been deprecated in v7.1. Instead of it, you should use the afterSort and beforeSort events.
Before v7.1
// the "sort" event
grid.events.on("Sort", function(id){
console.log("The grid is sorted by the "+id+" column");
});
From v7.1
// the "afterSort" event
grid.events.on("afterSort", (col, dir) => {
console.log(col, dir);
});

// the "beforeSort" event
grid.events.on("beforeSort", (col, dir) => {
console.log("beforeSort", col, dir);
// return false;
});

6.5 -> 7.0

Grid/TreeGrid

  1. The splitAt configuration property of Grid has been deprecated. The property is still available but not recommended for use.

Starting from v7.0, use leftSplit instead.

Before v7.0
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
splitAt: 2,
data: dataset
});
From v7.0
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
leftSplit: 2,
data: dataset
});

Layout

  1. Before v7.0, the gravity property of a Layout cell was intended to arrange content evenly throughout the cell.

Starting from v7.0, the property is used for setting the "weight" of a cell in relation to other cells placed in the same row, within one parent.

The type of the property has been changed from boolean to number, but boolean type is still available for backward compatibility purposes.

DataView/List

  1. The following API methods of DataView/List have been deprecated: enableSelection(), disableSelection(). These methods are still available but not recommended for use.

Instead of the methods, use new enable(), disable() methods of the selection object.

Before v7.0
// DataView
dataview.enableSelection();
dataview.disableSelection();

// List
list.enableSelection();
list.disableSelection();
From v7.0
// DataView
dataview.selection.enable();
dataview.selection.disable();

// List
list.selection.enable();
list.selection.disable();

Form and Form controls

  1. Starting with 7.0, to access the Form control you can use either the name of the control or its id (if the name attribute is not defined in the config of the control). In previous versions it was possible to access the control only by id.

  2. The following events of Form have been deprecated: buttonClick, validationFail. These events are still available but not recommended for use.

Instead of the buttonClick event, use the new click event.

Before v7.0
form.events.on("buttonClick", function(id, events) {
console.log(id);
});
From v7.0
form.events.on("click", function(name, events) {
console.log("Click", name, events);
});

Instead of the validationFail event, use the new afterValidate, beforeValidate events:

Before v7.0
form.events.on("validationFail", function(id,component){
// your code here
});
From v7.0
// AfterValidate event
form.events.on("afterValidate", function(name, value, isValid) {
console.log("AfterValidate", name, value, isValid);
});

// BeforeValidate event
form.events.on("beforeValidate", function(name, value) {
console.log("BeforeValidate", name, value);
return true;
});
  1. The value property of the Button control of Form has been replaced by the text one.

The setValue() method of the Button control of Form has been deprecated.

form.getItem("button_id").setValue("button_value");
  1. The following properties of the configuration object of a radio button of RadioGroup have been deprecated:
  • label
  • labelWidth
  • hiddenLabel
  • labelPosition
  • helpMessage
  • preMessage
  • successMessage
  • errorMessage
  1. The gravity property have been deprecated for all Form controls.

  2. The readonly attribute of the Combo control of Form have been deprecated. Starting from v7.0, use readOnly instead.

Confirm message box

  1. Before v7.0, the Space and Enter key were used to confirm the Reject button. Starting with v7.0, the keys confirm the Apply button. The Esc key confirms the Reject button.

Also note, that before v7.0, the confirm buttons were displayed in the following order: "Apply" and "Reject". In the version 7.0, the order has been changed to "Reject" and "Apply".

TimePicker

  1. The apply event of TimePicker has been deprecated. Instead of it, use the new beforeApply and afterApply events.
Before v7.1
timepicker.events.on("apply", function(){
console.log("The value of a timepicker "+ timepicker.getValue() + " has been saved");
});
After v7.1
timepicker.events.on("beforeApply", function(value){
console.log("The ", value, " of a timepicker will be saved");
return false;
});

timepicker.events.on("afterApply", function(value){
console.log("The ", value, " of a timepicker is saved");
});

Combobox

  1. The readonly configuration property have been deprecated. Starting from v7.0, use readOnly instead.
const combo = new dhx.Combobox("combo_container", { 
readOnly: true
});

6.3 -> 6.4

  1. Here is the list of methods, events and properties that were just renamed for clarity and consistency:

Calendar

Up to version 6.3From version 6.4
Events
calendar.events.on("dateHover", function(){})calendar.events.on("dateMouseOver", function(){})
Properties
blockdisabledDates
viewmode

ColorPicker

Up to version 6.3From version 6.4
Methods
colorpicker.focusValue()colorpicker.setFocus()
Events
colorpicker.events.on("viewChange",function(){})colorpicker.events.on("modeChange", function(){})
colorpicker.events.on("selectClick",function(){})colorpicker.events.on("apply", function(){})

Combobox

Up to version 6.3From version 6.4
Events
combo.events.on("close", function(){})combo.events.on("afterClose", function(){})
Properties
cellHeightitemHeight
helphelpMessage
showItemsCountitemsCount

DataView

Up to version 6.3From version 6.4
Methods
dataview.edit()dataview.editItem()
Events
dataview.events.on("contextMenu", function(){})dataview.events.on("itemRightClick", function(){})
Properties
editingeditable

The multiselectionMode property is deprecated. Starting from the version 6.4 , it is possible to set the mode of selection of multiple items using the multiselection property of DataView.

Grid

Up to version 6.3From version 6.4
Methods
grid.edit()grid.editCell()
Properties
editingeditable
fitToContainerautoWidth
headerSortsortable

The columnsAutoWidth property is replaced with the adjust property. The property can take one of three values: "header", "data" or true.

Before 6.4 the adjustColumnWidth() method took only one parameter - the id of the column. Starting from v6.4, it is also possible to pass the mode of adjusting a column ("header", "data", true) as a second parameter.

List

Up to version 6.3From version 6.4
Methods
list.edit()list.editItem()
Events
list.events.on("contextMenu", function(){})list.events.on("itemRightClick", function(){})
Properties
editingeditable

The multiselectionMode property is deprecated. Starting from the version 6.4 , it is possible to set the mode of selection of multiple items using the multiselection property of List.

The toggle event is deprecated. Use new beforeCollapse, afterCollapse, beforeExpand, afterExpand events instead.

Slider

Up to version 6.3From version 6.4
Properties
helphelpMessage
thumbLabeltooltip

Tabbar

Up to version 6.3From version 6.4
Methods
tabbar.removeCell()tabbar.removeTab()
tabbar.addCell()tabbar.addTab()
Events
tabbar.events.on("close", function(){})tabbar.events.on("afterClose", function(){})
Properties
closeButtonsclosable
activeViewactiveTab

TimePicker

Up to version 6.3From version 6.4
Events
timepicker.events.on("close", function(){})timepicker.events.on("afterClose", function(){})
timepicker.events.on("save", function(){})timepicker.events.on("apply", function(){})
Properties
actioncontrols

Tree

Up to version 6.3From version 6.4
Properties
editingeditable

The isFolder property is deprecated. Instead of it, you can set the icon property in the configuration object of a tree item to add custom icons for tree items.

const tree = new dhx.Tree("tree_container", {
data:[
{
"value": "Books",
"id": "Books",
"opened": true,
"items": [
{
"value": "Lawrence Block",
"id": "Lawrence Block",
"icon": {
"folder": "fas fa-book",
"openFolder": "fas fa-book-open",
"file": "fas fa-file"
}
}
]
}
]
});

TreeGrid

Up to version 6.3From version 6.4
Methods
treegrid.edit()treegrid.editCell()
Properties
editingeditable
fitToContainerautoWidth
headerSortsortable

The columnsAutoWidth property is replaced with the adjust property. The property can take one of three values: "header", "data" or true.

Before 6.4 the adjustColumnWidth() method took only one parameter - the id of the column. Starting from v6.4, it is also possible to pass the mode of adjusting a column ("header", "data", true) as a second parameter.

Combobox, Slider

The labelInline property is replaced with the labelPosition property. The labelPosition property defines the position of a label.

  1. Since some properties of widgets of the Suite library have been renamed, the properties of Form controls, that are based on this widgets, have also been renamed:

All Form controls

Up to version 6.3From version 6.4
editingeditable
helphelpMessage
celCsscss

Combo control

Up to version 6.3From version 6.4
cellHeightitemHeight

DatePicker control

Up to version 6.3From version 6.4
blockdisabledDates
viewmode

Slider control

Up to version 6.3From version 6.4
thumbLabeltooltip

TimePicker control

Up to version 6.3From version 6.4
actioncontrols

6.2 -> 6.3

  1. In the version 6.3 names of some methods and events of DHTMLX library were changed. It was made in order to avoid confusion and misunderstanding due to inconsistency between the name and functionality.

ColorPicker

Up to version 6.2From version 6.3
getView()getCurrentMode()
colorpicker.events.on("colorChange",function(){})colorpicker.events.on("change", function(){})

Grid

Up to version 6.2From version 6.3
grid.events.on("headerInput", function(){})grid.events.on("filterChange", function(){})

Layout

Up to version 6.2From version 6.3
layout.cell(id)layout.getCell(id)

Tree

Up to version 6.2From version 6.3
tree.close(id)tree.collapse(id)
tree.closeAll()tree.collapseAll()
tree.open(id)tree.expand(id)
tree.openAll()tree.expandAll()
tree.unCheckItem(id)tree.uncheckItem(id)
tree.events.on("itemContextMenu", function(){})tree.events.on("itemRightClick", function(){})

TreeGrid

Up to version 6.2From version 6.3
grid.events.on("headerInput", function(){})grid.events.on("filterChange", function(){})

Window

Up to version 6.2From version 6.3
window.fullScreen()window.setFullScreen()
  1. Until the version 6.3 List and DataView had the getFocusIndex() and setFocusIndex() methods. Starting from v6.3, these methods are no longer considered important. They are deprecated and not recommended for use.

Instead, use the corresponding getFocus() method for getting the id of an item in focus:

list.getFocus(); // -> "item_id"

dataview.getFocus(); // -> "item_id"

and the setFocus() method for setting focus to an item by its id:

list.setFocus("item_id");

dataview.setFocus("item_id");

In case you still need to get the index of an item in focus, make use of the code, as in:

// get the id of an item using the getFocus() method
const id = list.getFocus();
// and pass this id as a parameter of the getIndex method of Data Collection
const index = list.data.getIndex(id);