Essential Studio® for Blazor Release Notes

v27.2.4
November 26, 2024

AI AssistView

Features

  • #I655913 - Now we have provided support for auto-scroll to the bottom when a new response is received in the AI AssistView.

Chart

Bug Fixes

  • #I641301 - Now, the memory usage doesn’t increase gradually when hovering over the chart to display the tooltip.
  • #F195099 - The stock chart background color is now properly applied when the value has been set.
  • #I655058 - In the pie chart, the data label template is now rendered properly without overlapping with each other.
  • #I656356 - Now, the chart series is visible when rendering the chart in the loaded event.

Data Grid

Bug Fixes

  • #I624074 - Resolved the issue where row dragging was not prevented while a row was in edit state with AllowRowDragAndDrop enabled.
  • #I655107 - Fixed the issue where key navigation caused unintended jumps during cell editing with FrozenColumns enabled.

Features

  • #I625444 - Provided support for passing the CellValue and CurrentCell properties in RecordClickEventArgs in the Data Grid.
    • The CurrentCell property provides detailed DOM information, including class names, styles, and attributes, via the CellDOM object.
    • The Value property allows direct access to the cell’s value.
    <SfGrid @ref="grid" DataSource="@Orders">
        <GridEvents OnRecordClick="RecordClickHandler" TValue="Order"></GridEvents>
        ........
    </SfGrid>
    @code {
        SfGrid<Order> grid;
        public void RecordClickHandler(RecordClickEventArgs<Order> args)
        {
            if (args.CurrentCell != null)
            {
                //Custom logic for CurrentCell
            }
      
            if (args.CellValue != null)
            {
               //Custom logic for CellValue
            }
        }
    }

DocIO

Bug Fixes

  • #I650274 - Tab stop is now preserved properly when converting RTF format document to DOCX.
  • #I649771 - Hanging issue will no longer been occurs while converting the Word document to PDF with frame.
  • #I647231 - Table cell width is now preserved properly while converting a DOCX format document to PDF
  • #I650035 - Hyperlink screen tip is now applied properly while converting Word document to PDF.
  • #I649142 - Image inside table is now preserved properly while converting DOCX document to PDF.
  • #I647258 - Nested table with improper grid span is now preserved properly while converting DOCX document to PDF.
  • #I656765 - The NullReferenceException will no longer be thrown while calling IsValidXHTML API.
  • Bullet list size is now preserved properly when exporting the document in RTF format.
  • ProtectionType.AllowOnlyRevisions now enables the track changes in Word document properly after calling Protect API.

Gantt Chart

Bug Fix

  • #I653037 - Resolved an issue where the Gantt Chart baseline was displayed as a milestone even when the baseline duration exceeded zero days.

MultiSelect

Bug fixes

  • #I654107 - Fixed an issue where users were unable to select an item using the space key in the MultiSelect CheckBox after filtering items.

Schedule

Bug fixes

  • #I648849 - The appointments were rendered in the wrong position when the transform style was applied to the parent element of the Scheduler has been fixed.

  • #I655551 - The issue where appointments were rendered in the wrong position in the Timeline Week and Timeline Workweek views when AutoRowHeight was enabled has been fixed.

Tab

Bug Fixes

  • #I649100 - An issue where the last selected tab item was not being maintained after making a hidden tab item visible has been fixed.

Tree Grid

Bug Fixes

  • #I651990 - Resolved an exception thrown during filtering when using GetFilteredRecords in the DataBound event.
  • #F194970 - Resolved an issue where the context menu did not display the built-in AddRow item.
  • #I475957, #I483358, #I649564 - Resolved a script error that occurred during Template rendering in TreeGridPageSettings.