Essential Studio for Blazor Release Notes
v20.4.42
January 04, 2023
AutoComplete
Bug fixes
-
#I424578
- The issue with “Input character is not maintained when using complex data in AutoComplete”. has been resolved.
Chart
Bug Fixes
-
#I426473
- Chart area series exception issue has been resolved. -
#F179483
- Accumulation Chart window resize exception issue has been resolved while refering bootstrap script.
DocIO
Bug Fixes
-
#I422160
– The NullReferenceException will no longer be thrown while callingAcceptAll
API. -
#I420371
- Shapes are now preserved properly after ungrouping the group shape in a DOCX format document. -
#I421979
- Bookmarks are now preserved while converting a DOCX format document to HTML. -
#I426122
- TOC is now updated properly after callingUpdateTableOfContents()
method. -
#I423951
- Picture border is now preserved properly while converting a Word document to PDF. -
#F39629
- Wrapping is now applied properly for a text while converting a Word document to PDF. -
#I425454
- Table header row is now preserved properly while converting a Word document to PDF. -
#I418564
- Nested table is now preserved properly while converting a DOCX format document to PDF. -
#I424829
- Underline is now preserved properly for the center tab stop while converting a Word document to PDF.
Document Editor
Bug fixes
-
#I423889
- Resolved the text alignment issue in RTL paragraph. -
#I423889
- Resolved the content overlapping issue in RTL paragraph. -
#F179129
- Resolved the paragraph format applying issue.
Grid
Breaking Changes
-
#I405505
,#F178833
- “Row Deselecting event does not trigger properly when multiple rows are deselected” has been resolved.
The RowSelecting, RowSelected, RowDeselecting and RowDeselected events now support the below new arguments.
New arguments | Description |
---|---|
Datas | Retrieves the collection of row data during the RowSelect/RowDeselect action. |
RowIndexes | Obtains the collection of row indices during the RowSelect/RowDeselect action. |
Code Example
<SfGrid>
<GridEvents RowDeselected="RowDeselectedHandler" TValue="Order"></GridEvents>
...
</SfGrid>
@code{
private void RowDeselectedHandler(RowDeselectEventArgs<Order> args)
{
List<T> deselectedRowDatas = args.Datas;
List<int> deselectedRowIndexes = args.args.RowIndexes;
}
}
Bug Fixes
-
#I418137
- Issue with “Cell is not in editable state while adding a new record in Batch mode, when the first columns IsIdentity property is set to true” is fixed. -
#I426063
- Issue with “When tabing from the last edited cell in the row in Batch mode, the tab key is not working as expected” has been resolved. -
#I417493
- Exception throws when performing filtering for DateTimeoffset column while using along with format is fixed. -
#I408601
- “Scrolling issue with less number of records when row virtualization is enabled” issue has been resolved. -
#I424670
- Issue with “Bottom line is not visible after performing collapse action in Datagrid” is fixed. -
#I425602
- “Issue in overriding default filter operators for menu filtering” has been resolved. -
#I422375
- “Exception while switching Tabs in Grid component” has been resolved. -
#F178108
- Argument Exception throws while re-opening the Modal Dialog with Grid having ObservableCollection DataSource has been resolved.
Multiselect
Bug fixes
-
#F179279
- Fixed an issue where the selected value in the component input did not update when the data source was dynamically updated.
Scheduler
Bug fixes
-
#I425420
- An issue with the inclusion of the hour and minute values in the recurrence rule has been resolved.
Tree Grid
Bug Fixes
-
#I420780
- Resolved row drag and drop not working properly with difference in datasource order structure. -
#I418746
- Resolved row index is not correctly updated when using virtualization with scrolling. -
#I422190
- Resolved current page property value is not properly updated. -
#I423546
- Resolved searching throws exception in case of enableCollapseAll enabled with expando object data. -
#F179005
- Resolved aggregate column value is not properly exported.
TreeView
Bug Fixes
-
#F179242
- Fixed an issue EnsureVisibleAsync function is not working properly. -
#I427112
- Fixed an issue DropIndicator value return null in the OnNodeDragStop event.
XlsIO
Bug Fixes
- #I425627 - Plot area of a chart in binary Excel document is now rendered properly in chart to image conversion.
- #I425620 - Chart borders and gridline colors of a chart in binary Excel document are now rendered properly in chart to image conversion.
- #I425428 - Null reference exception being thrown when the value of data labels from the cell range count is less than the series point count is now resolved.
-
#I425336 - Null reference exception being thrown when the series category and value axis point count are not equal is now resolved.
- Cells with case sensitive text are now filtered properly.