Essential Studio for Blazor Release Notes

v20.2.38
July 12, 2022

AutoComplete

Bug fixes

  • #I384616 - Issue with “custom value is not getting updated in the component when popup is in closed state” has been resolved.

Chart

Bug fixes

  • #I388419 - Column chart corner radius is now properly rendering for zero value.
  • #I388794 - Console error when value is too large or too small for chart has been fixed.

DocIO

Bug Fixes

  • #I383879 - Paragraph spacing is now preserved properly while clone and merging a section into a Word document.
  • #I384139 - Table content is now preserved properly while converting a Word document to PDF.
  • #I387152, I383748 – List number is now properly preserved while converting a Word document to PDF.
  • #I384583 - The paragraph inside a frame is now preserved properly while converting a Word document to PDF.
  • #I384138 - Tables are now preserved properly while converting a Word document to PDF.
  • #I311564 - TOC navigation is now working properly while converting a Word document to PDF.
  • #I379364 - List number is now preserved properly while converting a Word document to HTML.
  • #I385266 - Styles are now removed properly while removing styles from a Word document.
  • #I387605 - Hyphenated text is now preserved properly while converting a Word document to PDF.
  • Sequence field is now updated properly while calling UpdateDocumentFields() method.

Gantt Chart

Bug fixes

  • #I386717 - Issue on Predecessor negative taskid not render has been fixed.
  • #I388765 - The timeline not partitioned correctly in the quarterly mode issue has been resolved.
  • #I387439 - The CSS gets overlapped on taskbar when we include holidays and weekends issue has been resolved.
  • #I389212 - Issue on Managing tasks when there is no resource has been fixed.

Grid

Breaking Changes

The Range and RangeLength attribute in the validation rules is changed from double[] to object[], Now you can use the range attribute for boolean, date, and number data types.

Before 20.2.0.38

<GridColumn Field=@nameof(Order.CustomerID) HeaderText="Customer ID" TextAlign="TextAlign.Center" Width="130"
        ValidationRules="@(new ValidationRules { Required = true, RangeLength=new double[] {3, 5 } })"></GridColumn>
<GridColumn Field=@nameof(Order.Freight) HeaderText="Freight" TextAlign="TextAlign.Center" Width="130"
        ValidationRules="@(new ValidationRules { Required = true, Range = new double[] { 1, 1000 } })"></GridColumn>

After 20.2.0.38

<GridColumn Field=@nameof(Order.CustomerID) HeaderText="Customer ID" TextAlign="TextAlign.Center" Width="130"
        ValidationRules="@(new ValidationRules { Required = true, RangeLength=new object[] {3, 5 } })"></GridColumn>
<GridColumn Field=@nameof(Order.Freight) HeaderText="Freight" TextAlign="TextAlign.Center" Width="130"
        ValidationRules="@(new ValidationRules { Required = true, Range = new object[] { 1, 1000 } })"></GridColumn>

Bug Fixes

  • #I174724 - Getting exception while doing server-side filtering on date column while using URL adaptor has been resolved.
  • #I378123 - Date Format Validation issue in Grid has been resolved.
  • #I376740 - Exception throws when perform grouping when the filter data is null is fixed.
  • #I375163 - Unable to click the Select All checkbox in ColumnChooser dialog inside DetailTemplate is fixed.
  • #I375274 - MultiSorting is not working properly with null value in complex column is fixed.
  • #I378643 - Incorrect PreviousRowIndex argument is received in RowSelected event issue has been resolved.
  • #I387823 - Issue with Clip Mode not working in stacked Headers has been resolved.
  • #I382639 - Blazor DataGrid Excel filter styles doesn’t appear properly has been resolved.
  • #I175318 - AutoFill not working for complex grid columns is fixed.
  • #I174747 - MaxLength validation attribute sets validation rules Length to -1 is fixed.

Kanban

Bug fixes

  • #I384330 - Now, the searched column count is displayed properly on Kanban content when using column layout.

Linear Gauge

Bug fixes

  • #F175801 - When the axis’s minimum value is in the negative range and the maximum value is set to zero, the label will be correct.

NumericTextBox

Bug fixes

  • #I383248 - Issue with “exception throws while typing the decimal separator as first character in the input element with ValidateOnInput property enabled.” has been resolved.

Pivot Table

Bug fixes

  • #I379065 - The pivot table now properly refreshed when show/hide totals dynamically.
  • In the pivot table, tooltips for value cells are now properly displayed.
  • Depending on the selected legend position in the pivot chart, legends are now displayed properly.

Breaking changes

Event

The following action names for action events have been changed to new action names.

Old Action names New Action names
MDX Query dialog open Open MDX query dialog
Table view Show table view
Chart view Show chart view
Hide subtotals Hide sub-totals
Show row subtotals only Show row sub-totals
Show column subtotals only Show column sub-totals
Show subtotals Show sub-totals
Show row grandtotals only Show row grand totals
Show column grandtotals only Show column grand totals
Change report Report change
Saved as current report Report re-saved
Current report renamed Report renamed
Current report removed Report removed
Current report loaded Report loaded
Subtotals hidden Sub-totals hidden
Row subtotals only shown Row sub-totals shown
Column subtotals only shown Column sub-totals shown
Subtotals shown Sub-totals shown
Row grandtotals only shown Row grand totals shown
Column grandtotals only shown Column grand totals shown

Presentation

Bug Fixes

  • #I386419 - Alpha value is now applied properly in black color while converting a PowerPoint presentation to PDF.

Splitter

Bug fixes

  • #I387352 - Now, the PaneSize argument will be passed when the expanded and collapsed events are triggered when expanding and collapsing the Splitter pane.

Toolbar

Bug fixes

  • #I380514 - An issue with “Error boundary not working on toolbar item click” has been fixed.

Tooltip

Bug fixes

  • #I384414 - The issue with “Need to fix the TipPointerPosition property issue in the Blazor Tooltip component” has been resolved.

Tree Grid

Bug fixes

  • #I387795 - Tree Grid rendered properly in .NET MAUI Blazor App.

TreeView

Bug fixes

  • #I389260 - The issue with “UnCheckAllAsync method does not work in the TreeView component” has been resolved.