dhx-suite 7.2.4 → 7.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/codebase/suite.min.css +1 -1
- package/codebase/suite.min.js +3 -3
- package/codebase/types/ts-chart/sources/Chart.d.ts +2 -2
- package/codebase/types/ts-chart/sources/helpers/common.d.ts +2 -1
- package/codebase/types/ts-chart/sources/series/TreeMap.d.ts +30 -0
- package/codebase/types/ts-chart/sources/series/index.d.ts +2 -0
- package/codebase/types/ts-chart/sources/types.d.ts +36 -3
- package/codebase/types/ts-combobox/sources/Combobox.d.ts +1 -0
- package/codebase/types/ts-combobox/sources/helper.d.ts +2 -1
- package/codebase/types/ts-combobox/sources/locales/en.d.ts +1 -0
- package/codebase/types/ts-combobox/sources/types.d.ts +3 -9
- package/codebase/types/ts-common/FocusManager.d.ts +2 -0
- package/codebase/types/ts-data/sources/datacollection/loader.d.ts +1 -0
- package/codebase/types/ts-data/sources/datacollection.d.ts +3 -3
- package/codebase/types/ts-data/sources/types.d.ts +4 -1
- package/codebase/types/ts-form/sources/types.d.ts +1 -0
- package/codebase/types/ts-grid/sources/types.d.ts +16 -2
- package/codebase/types/ts-layout/sources/Cell.d.ts +3 -0
- package/codebase/types/ts-layout/sources/types.d.ts +2 -0
- package/codebase/types/ts-list/sources/List.d.ts +1 -0
- package/codebase/types/ts-list/sources/types.d.ts +1 -0
- package/codebase/types/ts-message/sources/types.d.ts +1 -0
- package/codebase/types/ts-ribbon/sources/Ribbon.d.ts +1 -1
- package/codebase/types/ts-tabbar/sources/types.d.ts +2 -0
- package/package.json +1 -1
- package/readme.txt +1 -1
- package/whatsnew.txt +249 -124
package/whatsnew.txt
CHANGED
|
@@ -1,5 +1,105 @@
|
|
|
1
|
-
Version 7.
|
|
2
|
-
|
|
1
|
+
# Version 7.3.1 (March 17, 2022)
|
|
2
|
+
|
|
3
|
+
### Fixes
|
|
4
|
+
|
|
5
|
+
- Data. Fix the issue with serialization of data into CSV format which caused the incorrect structure of the output data if the initial data set contained a comma (",") in a value
|
|
6
|
+
- DataCollection. Fix the issue with the save() method of DataCollection which sent multiple requests (when making multiple changes) to the server instead one
|
|
7
|
+
- Form. Fix the incorrect work of the destruct() method when calling it from the change event
|
|
8
|
+
- Grid. Fix the issue which caused a selected item still to remain selected after it was removed from the data collection
|
|
9
|
+
- Grid. Fix the issue with applying the adjust property of Grid after the data reloading
|
|
10
|
+
- Grid. Fix the script error thrown after removing all selected options from the "multiselect" editor of a cell
|
|
11
|
+
- Grid. Pagination. Fix the issue which caused pagination not to work when using lazy loading of Grid data
|
|
12
|
+
- List. Pagination. Fix the issue which caused pagination not to work when using lazy loading of List data
|
|
13
|
+
|
|
14
|
+
# Version 7.3 (January 19, 2022)
|
|
15
|
+
|
|
16
|
+
### New functionality
|
|
17
|
+
|
|
18
|
+
#### Chart
|
|
19
|
+
|
|
20
|
+
- New Treemap chart
|
|
21
|
+
- The ability to arrange legend items vertically or horizontally via the direction property of the legend
|
|
22
|
+
|
|
23
|
+
#### Combobox
|
|
24
|
+
|
|
25
|
+
- The ability to disable rendering of HTML content in Combobox options via the htmlEnable property
|
|
26
|
+
- The ability to allow users to add new items into the list of options from UI via the newOptions property
|
|
27
|
+
- New addOption() method
|
|
28
|
+
- New "createItem" locale option added
|
|
29
|
+
|
|
30
|
+
#### Form. Combo control
|
|
31
|
+
|
|
32
|
+
- The ability to allow users to add new values into the list of combobox options from UI via the newOptions property
|
|
33
|
+
- The ability to add a new item into the Combo control via the addOption() method of Combobox: form.getItem("combo").getWidget().addOption("new_value");
|
|
34
|
+
|
|
35
|
+
#### Grid
|
|
36
|
+
|
|
37
|
+
- The ability to add custom logic to the header/footer filters of the column via the customFilter attribute
|
|
38
|
+
- The ability to allow users to add new values into the list of options from UI via the newOptions attribute of the editorConfig property of a column
|
|
39
|
+
|
|
40
|
+
#### List
|
|
41
|
+
|
|
42
|
+
- The ability to disable rendering of HTML content in List options via the htmlEnable property
|
|
43
|
+
|
|
44
|
+
#### Message
|
|
45
|
+
|
|
46
|
+
- The ability to disable displaying HTML content in the Alert box, Confirm box, and Tooltip via the htmlEnable property
|
|
47
|
+
|
|
48
|
+
#### Tabbar
|
|
49
|
+
|
|
50
|
+
- New beforeChange event
|
|
51
|
+
|
|
52
|
+
#### TreeGrid
|
|
53
|
+
|
|
54
|
+
- The ability to add custom logic to the header/footer filters of the column via the customFilter attribute
|
|
55
|
+
- The ability to allow users to add new items into the list of options from UI via the newOptions attribute of the editorConfig property of a column
|
|
56
|
+
|
|
57
|
+
### Fixes
|
|
58
|
+
|
|
59
|
+
- Chart. Fix the incorrect display of Radar chart if the values in the data set are the same
|
|
60
|
+
- Chart. Fix the issue with displaying an empty tooltip in Line chart
|
|
61
|
+
- Chart. Fix the issue with the type of the value property in a data set
|
|
62
|
+
- Custom Scroll. Fix the incorrect position of scroll after scrolling the grid attached to the tabbar and changing the tabs
|
|
63
|
+
- Form. Fix the issue with enabling the disabled RadioGroup control
|
|
64
|
+
- Form. Fix the issue with the Textarea control. Now the required property doesn't take value: null as a valid
|
|
65
|
+
- Form. Input control. Fix the issue with display of excess whitespace in the output value of the Input event
|
|
66
|
+
- Grid, Pagination. Fix the incorrect work of Pagination if the first column of the grid is hidden
|
|
67
|
+
- Grid. Fix the incorrect display of actual values specified in the "select", "combobox", or "multiselect" editor when opening the editor
|
|
68
|
+
- Grid. Fix the incorrect loading of string values from XML file
|
|
69
|
+
- Grid. Fix the incorrect work of selectFilter with boolean values
|
|
70
|
+
- Grid. Fix the issue that caused the adjust property to ignore the template specified for a column
|
|
71
|
+
- Grid. Fix the issue which caused key navigation to stop working in Grid attached into Tabbar which is attached into Window
|
|
72
|
+
- Grid. Fix the issue which caused autoWidth not to work if the width wasn't specified for only one of the grid columns
|
|
73
|
+
- Grid. Fix the issue with number formatting which caused minus numbers from -1 to 0 to be displayed like positive numbers
|
|
74
|
+
- Grid. Fix the issue with drag-and-drop of the first row
|
|
75
|
+
- Grid. Fix the issue with the canRowDrop event
|
|
76
|
+
- Layout. Fix the issue which caused the cells without the height/width specified initially cannot be reverted to the original state after they've been resized and collapsed several times
|
|
77
|
+
- Layout. Fix the issue with collapsing and resizing a cell after it has been resized
|
|
78
|
+
- LazyDataProxy in Grid. Fix the issue with the loadError event
|
|
79
|
+
- Menu. ContextMenu. Fix the issue with the self-generated "–context-menu" postfix for the name of the custom CSS class
|
|
80
|
+
- Menu. Fix the issue which caused the menu to close after hovering over the first item which is disabled
|
|
81
|
+
- Ribbon. Fix the issue with calculation of the widget's height when some items are hidden
|
|
82
|
+
- Toolbar. Datepicker control. Fix the issue which caused the same date to be shown in different Datepickers (two or more)
|
|
83
|
+
- Toolbar. SelectButton control. Fix the issue that caused an icon of the selected value not being displayed initially or after applying the setState() method
|
|
84
|
+
- TreeGrid. Fix the incorrect work of filtering when multiselection is enabled for comboFilter and multiple options are selected
|
|
85
|
+
- TreeGrid. Fix the issue with exporting a grouped treegrid to CSV
|
|
86
|
+
- TreeGrid. Fix the issue with render of data items when they are parsed in reverse order
|
|
87
|
+
|
|
88
|
+
# Version 7.2.5 (October 28, 2021)
|
|
89
|
+
|
|
90
|
+
### Fixes
|
|
91
|
+
|
|
92
|
+
- Form. Timepicker control. Fix the issue with setting the time in the timepicker using the keyboard
|
|
93
|
+
- Grid. TreeGrid. Now the value of the option will be displayed both in the editor and a cell if the options of the "combobox" and "select" editors are set as an array of objects with the id-value combinations
|
|
94
|
+
- Grid. TreeGrid. Now the width of the column is calculated depending on the following properties: minWidth/ maxWidth, adjust, and autoWidth
|
|
95
|
+
- Grid. TreeGrid. Now there is the ability to set the options of the "select" editor of a cell as an array of objects with the id-value combinations
|
|
96
|
+
- Grid. Fix the issue which caused the method of dragging a column to be called after clicking the in-header filter of a column (in Firefox only)
|
|
97
|
+
- Grid. Fix the issue with key navigation when working with several grids
|
|
98
|
+
- Grid. Fix the issue with the autoWidth property which caused the minimal width of the column not being taken into account when calculating the column's width
|
|
99
|
+
- Grid. TreeGrid. Fix the issue which caused data of the treegrid to be changed after filtering and dragging a column/row
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
# Version 7.2.4 (October 13, 2021)
|
|
3
103
|
|
|
4
104
|
### Fixes
|
|
5
105
|
|
|
@@ -14,8 +114,8 @@ Version 7.2.4 (October 13, 2021)
|
|
|
14
114
|
- Grid. Fix the issue with filtering the grid via the combo filter when the autoEmptyRow configuration property of Grid is set to true
|
|
15
115
|
- TreeGrid. Fix the incorrect display of an icon of a treegrid row after adding a child row and then deleting it. Now the $items property of the TreeGridCollection object is updated after deleting all child items
|
|
16
116
|
|
|
17
|
-
|
|
18
|
-
|
|
117
|
+
|
|
118
|
+
# Version 7.2.3 (September 27, 2021)
|
|
19
119
|
|
|
20
120
|
### Fixes
|
|
21
121
|
|
|
@@ -29,18 +129,18 @@ Version 7.2.3 (September 27, 2021)
|
|
|
29
129
|
- Grid. Now the content of the grid is filtered strictly by the values selected in the combo filter
|
|
30
130
|
- Toolbar. Fix the issue with render of data when recreating the toolbar after removing it via the `destructor()` method
|
|
31
131
|
|
|
32
|
-
Version 7.2.2 (September 13, 2021)
|
|
33
|
-
----------------------------
|
|
34
132
|
|
|
35
|
-
|
|
133
|
+
# Version 7.2.2 (September 13, 2021)
|
|
134
|
+
|
|
135
|
+
### Fixes
|
|
36
136
|
|
|
37
137
|
- Grid. Fix the issue with the render of the grid, which is placed into the tabbar, after applying the setColumns() method of Grid and switching between the tabs of the tabbar
|
|
38
138
|
- Layout. Fix the script error thrown when trying to resize a cell when the next cell is hidden
|
|
39
139
|
- List. Fix the issue which caused new items not to be added into an empty data collection after applying the filter() method to the data collection
|
|
40
140
|
- TreeGrid. Fix the issue with selection of the child rows and its cells
|
|
41
141
|
|
|
42
|
-
|
|
43
|
-
|
|
142
|
+
|
|
143
|
+
# Version 7.2.1 (August 26, 2021)
|
|
44
144
|
|
|
45
145
|
### Fixes
|
|
46
146
|
|
|
@@ -56,21 +156,24 @@ Version 7.2.1 (August 26, 2021)
|
|
|
56
156
|
- List. Fix the issue which caused the list not to be scrolled to the item selected via the `setFocus()` method
|
|
57
157
|
- TreeGrid. Now it is possible to filter the content of the treegrid by multiple header filters
|
|
58
158
|
|
|
59
|
-
|
|
60
|
-
|
|
159
|
+
|
|
160
|
+
# Version 7.2 (August 4, 2021)
|
|
61
161
|
|
|
62
162
|
### New functionality
|
|
63
163
|
|
|
64
164
|
#### Combobox
|
|
165
|
+
|
|
65
166
|
- New blur() method is added
|
|
66
167
|
- New events are added: blur, focus, keydown, beforeOpen, afterOpen
|
|
67
168
|
|
|
68
169
|
#### Form
|
|
170
|
+
|
|
69
171
|
- New Container control to attach HTML code or the DHTMLX widgets is added (Pro version)
|
|
70
172
|
- New "blur()" method is added
|
|
71
173
|
- New events are added: "blur", "focus", "keydown"
|
|
72
174
|
|
|
73
175
|
#### Form controls
|
|
176
|
+
|
|
74
177
|
- New "blur()" method of Form controls: Button, DatePicker, Checkbox, CheckboxGroup, ColorPicker, Combo, Input, RadioGroup, Select, Slider, Textarea, TimePicker
|
|
75
178
|
- New "focus()" method of Form controls: Button, Slider
|
|
76
179
|
- New "blur" event of Form controls: Button, DatePicker, Checkbox, CheckboxGroup, ColorPicker, Combo, Input, RadioGroup, Select, Slider, Textarea, TimePicker
|
|
@@ -78,6 +181,7 @@ Version 7.2.0 (August 4, 2021)
|
|
|
78
181
|
- New "keydown" event of Form controls: Button, DatePicker, Checkbox, CheckboxGroup, ColorPicker, Combo, Input, RadioGroup, Select, Slider, Textarea, TimePicker
|
|
79
182
|
|
|
80
183
|
#### Grid
|
|
184
|
+
|
|
81
185
|
- New multiselect editor is added
|
|
82
186
|
- The ability to choose several options in comboFilter at once via setting multiselection:true property of comboFilter
|
|
83
187
|
- The ability to show different values in the grid cell and in the combo editor by setting "id-value" combinations for each option of the combo editor
|
|
@@ -85,19 +189,23 @@ Version 7.2.0 (August 4, 2021)
|
|
|
85
189
|
- The ability to enable/disable sorting by clicking the header via the "headerSort" attribute of the header configuration property of a Grid column
|
|
86
190
|
|
|
87
191
|
#### Slider
|
|
192
|
+
|
|
88
193
|
- New methods are added: blur() , focus()
|
|
89
194
|
- New events are added: blur, focus, keydown
|
|
90
195
|
|
|
91
196
|
#### Toolbar
|
|
197
|
+
|
|
92
198
|
- New Datepicker control is added
|
|
93
199
|
- The inputChange event is added
|
|
94
200
|
|
|
95
201
|
#### Tree
|
|
202
|
+
|
|
96
203
|
- The ability to specify a template for Tree items
|
|
97
204
|
- The ability to add event handlers to the HTML elements of a custom template
|
|
98
205
|
- The ability to set the height of an item
|
|
99
206
|
|
|
100
207
|
#### Treegrid
|
|
208
|
+
|
|
101
209
|
- New multiselect editor is added
|
|
102
210
|
- The ability to choose several options in comboFilter at once via setting multiselection:true property of comboFilter
|
|
103
211
|
- The ability to show different values in the grid cell and in the combobox editor by setting "id-value" combinations for each option of the combobox editor
|
|
@@ -105,21 +213,24 @@ Version 7.2.0 (August 4, 2021)
|
|
|
105
213
|
- The ability to enable/disable sorting by clicking the header via the "headerSort" attribute of the header configuration property of a TreeGrid column
|
|
106
214
|
|
|
107
215
|
#### Helpers
|
|
216
|
+
|
|
108
217
|
- Custom scroll to replace the standard browser scrollbar is added (Pro version)
|
|
109
218
|
|
|
110
219
|
### Updates
|
|
220
|
+
|
|
111
221
|
- DataCollection. The save() method of DataCollection is updated. Now the method sends either POST, or PUT, or DELETE requests to the backend.
|
|
112
222
|
- Grid, TreeGrid. The "row" and "both" values of the dragItem configuration property are added.
|
|
113
223
|
- Tree. Now it is possible to edit multiline content of a Tree item after setting "editable:true" configuration option of Tree
|
|
114
224
|
|
|
115
225
|
### Fixes
|
|
226
|
+
|
|
116
227
|
- Grid. Fix the issue with the update of options in the combo filter after adding a new item into the data collection
|
|
117
228
|
- Grid. Fix the issue with loading data into Grid using lazyDataProxy
|
|
118
229
|
- Grid. Fix the issue with entering text in the combobox editor of a Grid cell
|
|
119
230
|
- Menu. Fix the issue which caused the context menu not to close after clicking outside the menu when the `navigationType: "click"` property is specified
|
|
120
231
|
|
|
121
|
-
|
|
122
|
-
|
|
232
|
+
|
|
233
|
+
# Version 7.1.10 (July 20, 2021)
|
|
123
234
|
|
|
124
235
|
### Fixes
|
|
125
236
|
|
|
@@ -147,8 +258,8 @@ Version 7.1.10 (July 20, 2021)
|
|
|
147
258
|
- TreeGrid. Fix the incorrect display of data when entering the value, which doesn't exist in the data set, into the header cell with the input filter
|
|
148
259
|
- TreeGrid. Fix the issues with the top and bottom borders of the footer cells of the frozen columns
|
|
149
260
|
|
|
150
|
-
|
|
151
|
-
|
|
261
|
+
|
|
262
|
+
# Version 7.1.9 (June 24, 2021)
|
|
152
263
|
|
|
153
264
|
### Fixes
|
|
154
265
|
|
|
@@ -176,12 +287,12 @@ Version 7.1.9 (June 24, 2021)
|
|
|
176
287
|
- TreeGrid. Fix the issue with dragging the rows in the grouped treegrid
|
|
177
288
|
- TreeGrid. Fix the incorrect work of selection after a tree node is collapsed
|
|
178
289
|
|
|
179
|
-
|
|
180
|
-
|
|
290
|
+
|
|
291
|
+
# Version 7.1.8 (June 10, 2021)
|
|
181
292
|
|
|
182
293
|
### Fixes
|
|
183
294
|
|
|
184
|
-
- Calendar. Fix the issue that caused the previously selected date to remain highlighted with the
|
|
295
|
+
- Calendar. Fix the issue that caused the previously selected date to remain highlighted with the gray circle after selecting some other date
|
|
185
296
|
- Calendar. Fix the script error that appeared when two calendars are linked and the "destructor()" method is called
|
|
186
297
|
- Chart. Fix the issue with the "log" configuration option of the chart scales
|
|
187
298
|
- Data Collection. Fix the issue with the "update()" method
|
|
@@ -195,8 +306,8 @@ Version 7.1.8 (June 10, 2021)
|
|
|
195
306
|
- Sidebar. Fix the issue with the display of nested items of the Sidebar controls
|
|
196
307
|
- Tree. Fix the issue with opening of the selected folder using key navigation when using the "autoload" configuration property of Tree
|
|
197
308
|
|
|
198
|
-
|
|
199
|
-
|
|
309
|
+
|
|
310
|
+
# Version 7.1.7 (May 17, 2021)
|
|
200
311
|
|
|
201
312
|
### Fixes
|
|
202
313
|
|
|
@@ -208,8 +319,8 @@ Version 7.1.7 (May 17, 2021)
|
|
|
208
319
|
- Data Collection. Fix the error fired after an item with the already existing id is added to the component via the "add()" method of the data collection
|
|
209
320
|
- Tree Collection. Fix the issue with the "filter()" method
|
|
210
321
|
|
|
211
|
-
|
|
212
|
-
|
|
322
|
+
|
|
323
|
+
# Version 7.1.6 (May 5, 2021)
|
|
213
324
|
|
|
214
325
|
### Fixes
|
|
215
326
|
|
|
@@ -221,8 +332,8 @@ Version 7.1.6 (May 5, 2021)
|
|
|
221
332
|
- TreeGrid. Fix the issue with drag-n-drop of rows
|
|
222
333
|
- Tree Collection. Fix the issue with the "copy" and "move" methods
|
|
223
334
|
|
|
224
|
-
|
|
225
|
-
|
|
335
|
+
|
|
336
|
+
# Version 7.1.5 (April 22, 2021)
|
|
226
337
|
|
|
227
338
|
### Fixes
|
|
228
339
|
|
|
@@ -230,8 +341,8 @@ Version 7.1.5 (April 22, 2021)
|
|
|
230
341
|
- Combobox. Fix the behavior of the css configuration option
|
|
231
342
|
- Tabbar. The recalculation function of the width of the tabs is optimized
|
|
232
343
|
|
|
233
|
-
|
|
234
|
-
|
|
344
|
+
|
|
345
|
+
# Version 7.1.4 (April 16, 2021)
|
|
235
346
|
|
|
236
347
|
### Fixes
|
|
237
348
|
|
|
@@ -245,8 +356,8 @@ Version 7.1.4 (April 16, 2021)
|
|
|
245
356
|
- LazyDataProxy in Grid. Fix the error occurred when returning false from the 'beforeLazyLoad" event handler
|
|
246
357
|
- Window. Fix the issue with display of tooltips of Grid cells behind the window when Grid is attached to Window
|
|
247
358
|
|
|
248
|
-
|
|
249
|
-
|
|
359
|
+
|
|
360
|
+
# Version 7.1.3 (April 12, 2021)
|
|
250
361
|
|
|
251
362
|
### Fixes
|
|
252
363
|
|
|
@@ -274,8 +385,8 @@ Version 7.1.3 (April 12, 2021)
|
|
|
274
385
|
- TreeGrid. Fix the issue with incorrect serialization of data
|
|
275
386
|
- Tree Collection. Fix the issue with the "mapRange()" method
|
|
276
387
|
|
|
277
|
-
|
|
278
|
-
|
|
388
|
+
|
|
389
|
+
# Version 7.1.2 (March 9, 2021)
|
|
279
390
|
|
|
280
391
|
### Fixes
|
|
281
392
|
|
|
@@ -301,8 +412,8 @@ Version 7.1.2 (March 9, 2021)
|
|
|
301
412
|
- TimePicker. The default height is reduced from 322px to 275px
|
|
302
413
|
- Tree. Fix the issue that caused the expand/collapse events not to trigger on expanding/collapsing the Tree item first time when autoload is used
|
|
303
414
|
|
|
304
|
-
|
|
305
|
-
|
|
415
|
+
|
|
416
|
+
# Version 7.1.1 (February 23, 2021)
|
|
306
417
|
|
|
307
418
|
### Fixes
|
|
308
419
|
|
|
@@ -314,8 +425,8 @@ Version 7.1.1 (February 23, 2021)
|
|
|
314
425
|
- Form. Fix the issue with the "required" configuration option of the Select control
|
|
315
426
|
- Window. Fix the incorrect display of the menu items when placing the menu inside the window
|
|
316
427
|
|
|
317
|
-
|
|
318
|
-
|
|
428
|
+
|
|
429
|
+
# Version 7.1 (February 18, 2021)
|
|
319
430
|
|
|
320
431
|
### New functionality
|
|
321
432
|
|
|
@@ -376,10 +487,10 @@ Version 7.1.0 (February 18, 2021)
|
|
|
376
487
|
- Window. Fix the issue with the sequence of closing modal windows when using key navigation
|
|
377
488
|
- Fix the issue that invoked the `domvm.js` warning in the console
|
|
378
489
|
|
|
379
|
-
Version 7.0.3 (January 19, 2021)
|
|
380
|
-
----------------------------
|
|
381
490
|
|
|
382
|
-
|
|
491
|
+
# Version 7.0.3 (January 19, 2021)
|
|
492
|
+
|
|
493
|
+
### Fixes
|
|
383
494
|
|
|
384
495
|
- Donut chart. Fix the issue with colors
|
|
385
496
|
- Grid. Fix the issue that caused the frozen columns to become movable when hiding columns
|
|
@@ -391,18 +502,18 @@ Version 7.0.3 (January 19, 2021)
|
|
|
391
502
|
- Window. Fix the issue that caused the text in the title of the window to overflow
|
|
392
503
|
- Fix the issue with TypeScript definition files
|
|
393
504
|
|
|
394
|
-
Version 7.0.2 (December 28, 2020)
|
|
395
|
-
----------------------------
|
|
396
505
|
|
|
397
|
-
|
|
506
|
+
# Version 7.0.2 (December 28, 2020)
|
|
507
|
+
|
|
508
|
+
### Fixes
|
|
398
509
|
|
|
399
510
|
- Fix the issue with loading data into the component via the parse() method of Tree Collection, or via the data configuration property of the component
|
|
400
511
|
- Fix the types of events in Grid
|
|
401
512
|
|
|
402
|
-
Version 7.0.1 (December 21, 2020)
|
|
403
|
-
----------------------------
|
|
404
513
|
|
|
405
|
-
|
|
514
|
+
# Version 7.0.1 (December 21, 2020)
|
|
515
|
+
|
|
516
|
+
### Fixes
|
|
406
517
|
|
|
407
518
|
- Fix the issue which appeared when scrolling Grid after opening a combo editor
|
|
408
519
|
- Fix the issue with the initial width of Grid columns when using "minWidth"
|
|
@@ -417,8 +528,8 @@ Version 7.0.1 (December 21, 2020)
|
|
|
417
528
|
- Fix the issue which caused the item in the filtered state after deleting from the data collection to be still found via the afterRemove event
|
|
418
529
|
- Fix the issue which caused the multiple combo options selected not to be numerated when sending values of Form to the server as Form Data
|
|
419
530
|
|
|
420
|
-
|
|
421
|
-
|
|
531
|
+
|
|
532
|
+
# Version 7.0 (December 7, 2020)
|
|
422
533
|
|
|
423
534
|
### Breaking changes
|
|
424
535
|
|
|
@@ -562,7 +673,7 @@ The update brings various changes in the API methods. Check the Migration articl
|
|
|
562
673
|
- Checkbox control of Form. The getValue() method is updated
|
|
563
674
|
- Input control of Form. The ability to define the type for the input field via the "inputType" attribute
|
|
564
675
|
- TimePicker control of Form. The "value" attribute is updated- the ability to specify the value as a Date, a number, an array, an object is added.
|
|
565
|
-
-
|
|
676
|
+
- SimpleVault control of Form. The beforeUploadFile, uploadBegin, uploadComplete, uploadFail, uploadFile, uploadProgress events are improved
|
|
566
677
|
- TimePicker control of Form. The getValue()/ setValue() methods are updated
|
|
567
678
|
- Form. The getValue() method is updated
|
|
568
679
|
- Grid/TreeGrid. The "splitAt" configuration property is replaced by the "leftSplit" one
|
|
@@ -607,18 +718,18 @@ The update brings various changes in the API methods. Check the Migration articl
|
|
|
607
718
|
- The issue with incorrect saving of Grid data when using the data.update() method called from the AfterEditEnd event, and applying the data.save() method
|
|
608
719
|
- The incorrect work of the data.save() method which caused only the first change of the Grid row to save
|
|
609
720
|
|
|
610
|
-
Version 6.5.8 (October 15, 2020)
|
|
611
|
-
----------------------------
|
|
612
721
|
|
|
613
|
-
|
|
722
|
+
# Version 6.5.8 (October 15, 2020)
|
|
723
|
+
|
|
724
|
+
### Fixes
|
|
614
725
|
|
|
615
726
|
- Fix the incorrect behavior of the sorting icon in the header of a Grid column when setting the sortable property to false
|
|
616
727
|
- Fix the issue which caused key navigation in Tree not to work in IE
|
|
617
728
|
|
|
618
|
-
Version 6.5.7 (October 15, 2020)
|
|
619
|
-
----------------------------
|
|
620
729
|
|
|
621
|
-
|
|
730
|
+
# Version 6.5.7 (October 15, 2020)
|
|
731
|
+
|
|
732
|
+
### Fixes
|
|
622
733
|
|
|
623
734
|
- Fix the incorrect work of the AfterEditEnd, AfterEditStart, BeforeEditEnd, BeforeEditStart events for cells with the checkbox editor type in Grid
|
|
624
735
|
- Fix the issue with rendering a tooltip on hovering over the slider thumb when the slider is attached to a Layout and a Window at the same time
|
|
@@ -626,10 +737,10 @@ Version 6.5.7 (October 15, 2020)
|
|
|
626
737
|
- Fix the issue with filtering data in Grid columns that caused filtering to stop working after reordering columns by drag and drop
|
|
627
738
|
- Fix the issue with drag and drop of Grid columns with selectFilter filled
|
|
628
739
|
|
|
629
|
-
Version 6.5.6 (October 5, 2020)
|
|
630
|
-
----------------------------
|
|
631
740
|
|
|
632
|
-
|
|
741
|
+
# Version 6.5.6 (October 5, 2020)
|
|
742
|
+
|
|
743
|
+
### Fixes
|
|
633
744
|
|
|
634
745
|
- Fix the incorrect work of the input filter of a Grid column when placing a grid into a shadowDOM while working in Firefox
|
|
635
746
|
- Fix the issue with key navigation in a grid placed to a layout cell, which caused key navigation to stop working after collapsing/expanding the layout cell
|
|
@@ -639,18 +750,18 @@ Version 6.5.6 (October 5, 2020)
|
|
|
639
750
|
- Fix the issue with the width of expanded items in Tree
|
|
640
751
|
- Fix the incorrect work of selection in Grid cells when using key navigation on a page with several grids
|
|
641
752
|
|
|
642
|
-
Version 6.5.5 (September 17, 2020)
|
|
643
|
-
----------------------------
|
|
644
753
|
|
|
645
|
-
|
|
754
|
+
# Version 6.5.5 (September 17, 2020)
|
|
755
|
+
|
|
756
|
+
### Fixes
|
|
646
757
|
|
|
647
758
|
- Fix the behavior of the align property of a Grid column when the spans configuration option is used
|
|
648
759
|
- Fix the issue with rendering of Grid/TreeGrid
|
|
649
760
|
|
|
650
|
-
Version 6.5.4 (September 15, 2020)
|
|
651
|
-
----------------------------
|
|
652
761
|
|
|
653
|
-
|
|
762
|
+
# Version 6.5.4 (September 15, 2020)
|
|
763
|
+
|
|
764
|
+
### Fixes
|
|
654
765
|
|
|
655
766
|
- Fix the issue with the value of a cell when calling the afterEditEnd event of Grid
|
|
656
767
|
- Fix the issue with positioning of selection over frozen columns in Grid and TreeGrid
|
|
@@ -662,10 +773,10 @@ Version 6.5.4 (September 15, 2020)
|
|
|
662
773
|
- Fix the issue with visualization of the mark property of a Grid column after data reloading
|
|
663
774
|
- Fix the issue which caused a footer of a Grid not to be included to the exported file
|
|
664
775
|
|
|
665
|
-
Version 6.5.3 (September 2, 2020)
|
|
666
|
-
----------------------------
|
|
667
776
|
|
|
668
|
-
|
|
777
|
+
# Version 6.5.3 (September 2, 2020)
|
|
778
|
+
|
|
779
|
+
### Fixes
|
|
669
780
|
|
|
670
781
|
- Fix the behavior of the keyNavigation property of Grid when the Grid is attached to a collapsed Layout cell
|
|
671
782
|
- Fix the issue with positioning of a popup relative to a Window
|
|
@@ -676,10 +787,10 @@ Version 6.5.3 (September 2, 2020)
|
|
|
676
787
|
- Checking the incorrect data of the setCell method of Grid is added
|
|
677
788
|
- Fix issues with minimal and maximal values of scales in Chart
|
|
678
789
|
|
|
679
|
-
Version 6.5.2 (July 14, 2020)
|
|
680
|
-
----------------------------
|
|
681
790
|
|
|
682
|
-
|
|
791
|
+
# Version 6.5.2 (July 14, 2020)
|
|
792
|
+
|
|
793
|
+
### Fixes
|
|
683
794
|
|
|
684
795
|
- Fixed types in d.ts
|
|
685
796
|
- Issue with the editCell method in Grid
|
|
@@ -689,15 +800,15 @@ Version 6.5.2 (July 14, 2020)
|
|
|
689
800
|
- Improved editing mode when drag and drop is enabled in Tree
|
|
690
801
|
- Issue with rendering nested levels of TreeGrid items
|
|
691
802
|
|
|
692
|
-
Version 6.5.1 (June 16, 2020)
|
|
693
|
-
----------------------------
|
|
694
803
|
|
|
695
|
-
|
|
804
|
+
# Version 6.5.1 (June 16, 2020)
|
|
805
|
+
|
|
806
|
+
### Fixes
|
|
696
807
|
|
|
697
808
|
- Issue with npm codebase build
|
|
698
809
|
|
|
699
|
-
|
|
700
|
-
|
|
810
|
+
|
|
811
|
+
# Version 6.5 (June 16, 2020)
|
|
701
812
|
|
|
702
813
|
### New functionality
|
|
703
814
|
|
|
@@ -750,10 +861,10 @@ Version 6.5.0 (June 16, 2020)
|
|
|
750
861
|
- Suite with React demo is updated
|
|
751
862
|
- Ability to work with number type of id in Combobox, DataView, List widgets and in Select control of Form
|
|
752
863
|
|
|
753
|
-
Version 6.4.4 (May 19, 2020)
|
|
754
|
-
----------------------------
|
|
755
864
|
|
|
756
|
-
|
|
865
|
+
# Version 6.4.4 (May 19, 2020)
|
|
866
|
+
|
|
867
|
+
### Fixes
|
|
757
868
|
|
|
758
869
|
- Fix the behavior of Layout inside a resizable window
|
|
759
870
|
- Fix the behavior of charts placed into a cell of Tabbar in IE
|
|
@@ -769,10 +880,10 @@ Version 6.4.4 (May 19, 2020)
|
|
|
769
880
|
- Fix rendering of custom HTML content in Window
|
|
770
881
|
- Fix priority of the modal Window while calling more than one Window
|
|
771
882
|
|
|
772
|
-
Version 6.4.3 (April 29, 2020)
|
|
773
|
-
----------------------------
|
|
774
883
|
|
|
775
|
-
|
|
884
|
+
# Version 6.4.3 (April 29, 2020)
|
|
885
|
+
|
|
886
|
+
### Fixes
|
|
776
887
|
|
|
777
888
|
- Fix clearing values while using the `clear()` method for the DatePicker control of Form
|
|
778
889
|
- Fix issues with the `CellClick, CellMouseOver, CellMouseDown, CellDblClick, CellRightClick` events of Grid when its columns are hidden
|
|
@@ -791,10 +902,10 @@ Version 6.4.3 (April 29, 2020)
|
|
|
791
902
|
- Fix the issue with the configuration of the `showText` property in Chart
|
|
792
903
|
- Fix calculation of width and height in Chart (Pie, 3DPie, Donut, Radar)
|
|
793
904
|
|
|
794
|
-
Version 6.4.2 (March 3, 2020)
|
|
795
|
-
----------------------------
|
|
796
905
|
|
|
797
|
-
|
|
906
|
+
# Version 6.4.2 (March 3, 2020)
|
|
907
|
+
|
|
908
|
+
### Fixes
|
|
798
909
|
|
|
799
910
|
- The issue with virtualization behavior in Grid when interacting with Tabbar
|
|
800
911
|
- The issue with clicking on a frozen column in Grid
|
|
@@ -804,18 +915,18 @@ Version 6.4.2 (March 3, 2020)
|
|
|
804
915
|
- The ability to check validation of values is added in Colorpicker
|
|
805
916
|
- Styles for all inputs with invalid values are fixed for Firefox browser
|
|
806
917
|
|
|
807
|
-
Version 6.4.1 (January 30, 2020)
|
|
808
|
-
----------------------------
|
|
809
918
|
|
|
810
|
-
|
|
919
|
+
# Version 6.4.1 (January 30, 2020)
|
|
920
|
+
|
|
921
|
+
### Fixes
|
|
811
922
|
|
|
812
923
|
- Behavior of lazy load in Grid
|
|
813
924
|
- The issue with the template configuration option in a column of Grid
|
|
814
925
|
- The issue with the headerIcon property of a layout cell
|
|
815
926
|
- The issue with the height of layout cells when the layout has a header
|
|
816
927
|
|
|
817
|
-
|
|
818
|
-
|
|
928
|
+
|
|
929
|
+
# Version 6.4 (January 28, 2020)
|
|
819
930
|
|
|
820
931
|
### New functionality
|
|
821
932
|
|
|
@@ -952,7 +1063,7 @@ Version 6.4.0 (January 28, 2020)
|
|
|
952
1063
|
- Now the multiselection property allows setting the mode of multiselection in List
|
|
953
1064
|
- The getValue method of DatePicker Form control
|
|
954
1065
|
|
|
955
|
-
|
|
1066
|
+
### Fixes
|
|
956
1067
|
|
|
957
1068
|
- The issue with ability to use all types of chart scales in any combinations
|
|
958
1069
|
- The issue with the setActive() method in Tabbar
|
|
@@ -962,8 +1073,8 @@ Version 6.4.0 (January 28, 2020)
|
|
|
962
1073
|
- The issue with styles when Combobox is disabled
|
|
963
1074
|
- Issues with the filter() method in Tree Collection
|
|
964
1075
|
|
|
965
|
-
|
|
966
|
-
|
|
1076
|
+
|
|
1077
|
+
# Version 6.3.1 (December 18, 2019)
|
|
967
1078
|
|
|
968
1079
|
### Fixes
|
|
969
1080
|
|
|
@@ -973,8 +1084,8 @@ Version 6.3.1 (December 18, 2019)
|
|
|
973
1084
|
- Add the ability to set the name attribute in the setValue method of Form control as key
|
|
974
1085
|
- Issue with the combo control of For
|
|
975
1086
|
|
|
976
|
-
|
|
977
|
-
|
|
1087
|
+
|
|
1088
|
+
# Version 6.3 (December 12, 2019)
|
|
978
1089
|
|
|
979
1090
|
### New functionality
|
|
980
1091
|
|
|
@@ -1032,8 +1143,8 @@ Version 6.3.0 (December 12, 2019)
|
|
|
1032
1143
|
- Issue with the validation property of Form controls
|
|
1033
1144
|
- Behavior of a TimePicker control of Form
|
|
1034
1145
|
|
|
1035
|
-
|
|
1036
|
-
|
|
1146
|
+
|
|
1147
|
+
# Version 6.2.3 (November 19, 2019)
|
|
1037
1148
|
|
|
1038
1149
|
### Fixes
|
|
1039
1150
|
|
|
@@ -1043,37 +1154,40 @@ Version 6.2.3 (November 19, 2019)
|
|
|
1043
1154
|
- Issue with the "movable" property in Window
|
|
1044
1155
|
- Issue with Window fixation
|
|
1045
1156
|
|
|
1046
|
-
|
|
1047
|
-
|
|
1157
|
+
|
|
1158
|
+
# Version 6.2.2 (November 5, 2019)
|
|
1048
1159
|
|
|
1049
1160
|
### Fixes
|
|
1050
1161
|
|
|
1051
1162
|
- Issues with selection in Grid
|
|
1052
1163
|
- Issue with the height of a cell in Layout
|
|
1053
1164
|
|
|
1054
|
-
|
|
1055
|
-
|
|
1165
|
+
|
|
1166
|
+
# Version 6.2.1 (October 25, 2019)
|
|
1056
1167
|
|
|
1057
1168
|
### Fixes
|
|
1058
1169
|
|
|
1059
1170
|
- Issue with the setValue() method in Calendar
|
|
1060
1171
|
- Issue with the combo filters in Grid
|
|
1061
1172
|
|
|
1062
|
-
|
|
1063
|
-
|
|
1173
|
+
|
|
1174
|
+
# Version 6.2 (October 23, 2019)
|
|
1064
1175
|
|
|
1065
1176
|
### New functionality
|
|
1066
1177
|
|
|
1067
|
-
####Calendar
|
|
1178
|
+
#### Calendar
|
|
1179
|
+
|
|
1068
1180
|
- The ability to select a range of dates in one calendar
|
|
1069
1181
|
|
|
1070
1182
|
#### Form
|
|
1183
|
+
|
|
1071
1184
|
- The ability to manipulate Form controls via the getItem() method of Form
|
|
1072
1185
|
- The ability to use clear(), clearValidate(), getValue(), setValue(), validate() methods for all Form controls
|
|
1073
1186
|
- The possibility to update the configuration of DatePicker, Checkbox, ColorPicker, Combo, Input, RadioGroup, Select, SimpleVault, Slider, Text, Textarea, TimePicker Form controls via the setConfig() method
|
|
1074
1187
|
- The ability to use methods of DHTMLX widgets via the getWidget() method of Datepicker, Colorpicker, Simplevault, Slider, Timepicker Form controls
|
|
1075
1188
|
|
|
1076
1189
|
#### Grid/TreeGrid
|
|
1190
|
+
|
|
1077
1191
|
- The possibility to show and hide a column in the Grid via the showColumn() and hideColumn() methods
|
|
1078
1192
|
- A new comboFilter for the header/footer content of a Grid column
|
|
1079
1193
|
- New checkbox and combobox editors for the cells of a Grid column
|
|
@@ -1083,6 +1197,7 @@ Version 6.2.0 (October 23, 2019)
|
|
|
1083
1197
|
- Export to CSV format
|
|
1084
1198
|
|
|
1085
1199
|
#### Layout
|
|
1200
|
+
|
|
1086
1201
|
- New events
|
|
1087
1202
|
|
|
1088
1203
|
### Updates
|
|
@@ -1110,8 +1225,8 @@ Version 6.2.0 (October 23, 2019)
|
|
|
1110
1225
|
- Issue with Timepicker Form control
|
|
1111
1226
|
- Issue with Colorpicker Form control
|
|
1112
1227
|
|
|
1113
|
-
|
|
1114
|
-
|
|
1228
|
+
|
|
1229
|
+
# Version 6.1.7 (October 10, 2019)
|
|
1115
1230
|
|
|
1116
1231
|
### Fixes
|
|
1117
1232
|
|
|
@@ -1119,8 +1234,8 @@ Version 6.1.7 (October 10, 2019)
|
|
|
1119
1234
|
- Issue with value property in Form
|
|
1120
1235
|
- Issue with editor on a frozen columns in Grid
|
|
1121
1236
|
|
|
1122
|
-
|
|
1123
|
-
|
|
1237
|
+
|
|
1238
|
+
# Version 6.1.6 (September 26, 2019)
|
|
1124
1239
|
|
|
1125
1240
|
### Fixes
|
|
1126
1241
|
|
|
@@ -1129,8 +1244,8 @@ Version 6.1.6 (September 26, 2019)
|
|
|
1129
1244
|
- Issue with the header rowspans in Grid
|
|
1130
1245
|
- Issues with the copy() and move() methods in Treecollection and Datacollection
|
|
1131
1246
|
|
|
1132
|
-
|
|
1133
|
-
|
|
1247
|
+
|
|
1248
|
+
# Version 6.1.5 (September 12, 2019)
|
|
1134
1249
|
|
|
1135
1250
|
### Fixes
|
|
1136
1251
|
|
|
@@ -1139,8 +1254,8 @@ Version 6.1.5 (September 12, 2019)
|
|
|
1139
1254
|
- Issue with Combobox popup
|
|
1140
1255
|
- Issue with the height of uploader in Form
|
|
1141
1256
|
|
|
1142
|
-
|
|
1143
|
-
|
|
1257
|
+
|
|
1258
|
+
# Version 6.1.4 (September 5, 2019)
|
|
1144
1259
|
|
|
1145
1260
|
### Fixes
|
|
1146
1261
|
|
|
@@ -1152,8 +1267,8 @@ Version 6.1.4 (September 5, 2019)
|
|
|
1152
1267
|
- Issues with Calendar styles
|
|
1153
1268
|
- Fixes in samples
|
|
1154
1269
|
|
|
1155
|
-
|
|
1156
|
-
|
|
1270
|
+
|
|
1271
|
+
# Version 6.1.3 (August 29, 2019)
|
|
1157
1272
|
|
|
1158
1273
|
### Fixes
|
|
1159
1274
|
|
|
@@ -1161,8 +1276,8 @@ Version 6.1.3 (August 29, 2019)
|
|
|
1161
1276
|
- Issues with styles in Chart
|
|
1162
1277
|
- Issues with property "hidden" in Checkboxes and RadioGroup of Form
|
|
1163
1278
|
|
|
1164
|
-
|
|
1165
|
-
|
|
1279
|
+
|
|
1280
|
+
# Version 6.1.2 (August 22, 2019)
|
|
1166
1281
|
|
|
1167
1282
|
### Fixes
|
|
1168
1283
|
|
|
@@ -1170,32 +1285,36 @@ Version 6.1.2 (August 22, 2019)
|
|
|
1170
1285
|
- Issues with Form select
|
|
1171
1286
|
- Issue with Datacollection add() method
|
|
1172
1287
|
|
|
1173
|
-
|
|
1174
|
-
|
|
1288
|
+
|
|
1289
|
+
# Version 6.1.1 (August 16, 2019)
|
|
1175
1290
|
|
|
1176
1291
|
### Fixes
|
|
1177
1292
|
|
|
1178
1293
|
- Issues with DnD in List and DataView
|
|
1179
1294
|
- Issue with getValue() method in Form
|
|
1180
1295
|
|
|
1181
|
-
|
|
1182
|
-
|
|
1296
|
+
|
|
1297
|
+
# Version 6.1 (August 15, 2019)
|
|
1183
1298
|
|
|
1184
1299
|
### New functionality
|
|
1185
1300
|
|
|
1186
1301
|
#### ComboBox
|
|
1302
|
+
|
|
1187
1303
|
- Ability to manipulate the visibility of the Combo popup via the Popup API
|
|
1188
1304
|
|
|
1189
1305
|
#### Dataview/List
|
|
1306
|
+
|
|
1190
1307
|
- The possibility to edit items via API (DataView / List) or the configuration object (DataView / List)
|
|
1191
1308
|
- New editing-related events: DoubleClick, BeforeEditStart, BeforeEditEnd, AfterEditStart, AfterEditEnd
|
|
1192
1309
|
- Multiple selection of items (DataView / List)
|
|
1193
1310
|
- Multiple drag-n-drop of items (DataView / List)
|
|
1194
1311
|
|
|
1195
1312
|
#### Data/Tree Collection
|
|
1313
|
+
|
|
1196
1314
|
- A new LoadError event for catching loading errors
|
|
1197
1315
|
|
|
1198
1316
|
#### Form
|
|
1317
|
+
|
|
1199
1318
|
- Dynamic config updating and re-rendering of a form
|
|
1200
1319
|
- Adding values into controls on the fly
|
|
1201
1320
|
- Clearing a form
|
|
@@ -1203,6 +1322,7 @@ Version 6.1.0 (August 15, 2019)
|
|
|
1203
1322
|
- A new RadioGroup control for grouping RadioButtons
|
|
1204
1323
|
|
|
1205
1324
|
#### Grid
|
|
1325
|
+
|
|
1206
1326
|
- Editing the whole Grid or separate columns via the configuration object
|
|
1207
1327
|
- Editing certain cells via the API method
|
|
1208
1328
|
- New editing-related events: BeforeEditStart, BeforeEditEnd, AfterEditStart, AfterEditEnd
|
|
@@ -1212,27 +1332,33 @@ Version 6.1.0 (August 15, 2019)
|
|
|
1212
1332
|
- The possibility to enable automatic adding of an empty row to the end of the Grid
|
|
1213
1333
|
|
|
1214
1334
|
#### Popup
|
|
1335
|
+
|
|
1215
1336
|
- The possibility to adjust the Popup offsets
|
|
1216
1337
|
|
|
1217
1338
|
#### Tree
|
|
1339
|
+
|
|
1218
1340
|
- The possibility to enable editing of items via the configuration object
|
|
1219
1341
|
|
|
1220
1342
|
#### Window
|
|
1343
|
+
|
|
1221
1344
|
- The ability to check the visibility of a window
|
|
1222
1345
|
|
|
1223
1346
|
### Updates
|
|
1224
1347
|
|
|
1225
1348
|
#### Data/Tree Collection
|
|
1349
|
+
|
|
1226
1350
|
- Calling sort without parameters resets applied sorting
|
|
1227
1351
|
- The possibility to add an array of items via the add method
|
|
1228
1352
|
|
|
1229
1353
|
#### Form
|
|
1354
|
+
|
|
1230
1355
|
- The possibility to set values for DatePicker, TimePicker, ColorPicker Form controls via inputs
|
|
1231
1356
|
- The possibility to make Form Inputs hidden
|
|
1232
1357
|
- The autocomplete feature for Form Inputs
|
|
1233
1358
|
- Validation of a Form Select control
|
|
1234
1359
|
|
|
1235
1360
|
#### Grid
|
|
1361
|
+
|
|
1236
1362
|
- Extended selection possibilities
|
|
1237
1363
|
|
|
1238
1364
|
### Fixes
|
|
@@ -1241,8 +1367,7 @@ Version 6.1.0 (August 15, 2019)
|
|
|
1241
1367
|
- Behavior of the Slider control
|
|
1242
1368
|
|
|
1243
1369
|
|
|
1244
|
-
Version 6.0.4 (August 6, 2019)
|
|
1245
|
-
----------------------------
|
|
1370
|
+
# Version 6.0.4 (August 6, 2019)
|
|
1246
1371
|
|
|
1247
1372
|
### Fixes
|
|
1248
1373
|
|
|
@@ -1256,8 +1381,8 @@ Version 6.0.4 (August 6, 2019)
|
|
|
1256
1381
|
- Issues with names in Calendar localization
|
|
1257
1382
|
- Styles fixes
|
|
1258
1383
|
|
|
1259
|
-
|
|
1260
|
-
|
|
1384
|
+
|
|
1385
|
+
# Version 6.0.3 (July 19, 2019)
|
|
1261
1386
|
|
|
1262
1387
|
### Fixes
|
|
1263
1388
|
|
|
@@ -1275,8 +1400,8 @@ Version 6.0.3 (July 19, 2019)
|
|
|
1275
1400
|
- Issues with z-index in Window and Popup
|
|
1276
1401
|
- Styles fixes
|
|
1277
1402
|
|
|
1278
|
-
|
|
1279
|
-
|
|
1403
|
+
|
|
1404
|
+
# Version 6.0.2 (July 11, 2019)
|
|
1280
1405
|
|
|
1281
1406
|
### Fixes
|
|
1282
1407
|
|
|
@@ -1289,8 +1414,8 @@ Version 6.0.2 (July 11, 2019)
|
|
|
1289
1414
|
- Issue with scroll in Combobox
|
|
1290
1415
|
- Issue with data parsing in Toolbar
|
|
1291
1416
|
|
|
1292
|
-
|
|
1293
|
-
|
|
1417
|
+
|
|
1418
|
+
# Version 6.0.1 (July 5, 2019)
|
|
1294
1419
|
|
|
1295
1420
|
### Fixes
|
|
1296
1421
|
|