Essential Studio for Blazor Release Notes

v17.4.46
January 30, 2020

Common

New Features

  • Migrated to .NET Core 3.1.1.

Bug Fixes

  • #260870, F150414 - Resolved System.NullReferenceException issue when deploy the syncfusion blazor application in production/server machine.

Dashboard Layout

Breaking Changes

  • Now, the Columns property and SizeX, SizeY, MaxSizeX, MaxSizeY, MinSizeX, MinSizeY panel properties accept only the integer values instead of double values.

  • Now, the Content and Header panel properties accept only RenderFragment values instead of string values.

Dialog

Bug Fixes

  • F150397 - The issue with conditional based rendering of Dialog buttons has been resolved.
  • #262335, F150857 - Issue with “Dialog button click action not work” has resolved.

Bug Fixes

  • #259338, #260803, #259645, #259640 - Issue with “popup not opening after the few selection” has been resolved.
  • #261047 - Now, GroupTemplate is updated to dropdownlist popup.
  • #262050 - Now, Enabled property is updated while change the property on dynamically.

Grid

Bug Fixes

  • #261428 - Pdf exporting is now working properly with custom datetime formats.
  • #259772 - Performance has been improveded when hiding columns using ColumnChooser.
  • #261022 - OnActionComplete event is now triggered during refresh.
  • F150402 - Updating date values using DatePicker in DialogTemplate is resolved.
  • #261898, F150295 - Batch editing is now working properly with cell based events.
  • #258580 - Support is provided to clear filtering for a particular column.
  • F149669 - FailureEventArgs is now contains the exceptions from the server side.

Breaking Changes

  • #261428 - Inserted data can now be model bounded at the server side using CRUDModel<T> for UrlAdaptor.

Previous

public void Insert([FromBody]Orders value)
{
    ...
}

Now

public void Insert([FromBody]CRUDModel<Orders> value)
{
    Orders data = value.Value;
    ...
}

In-place Editor

New Features

  • #258695 - Provided cancel argument in beginEdit event to prevent the open action of the editor.

Maps

New Features

  • #256121 - Provided support to toggle the panning functionality in maps control by using the EnablePanning property.

Bug Fixes

  • #262308 - The center position of the maps is now updated properly while changing its value dynamically.

RichTextEditor

New Features

  • #F149481 - Provided the support to get the selected HTML content using the getSelectedHtml public method.

Bug Fixes

  • F150900, #262443 - Resolved the console error occured when destroy a RichTextEditor component.

Schedule

New Features

  • #260919 - Introduced the public method GetSelectedElements to get the currently selected work cell elements.

Bug Fixes

  • #261088 - Now, the scheduler shows correct scroll position when the selected date as current date.
  • #150578 - Issue with “Editor window get’s empty while using OnPopupClose event” has been fixed.

Splitter

Bug Fixes

  • #255853 - Resolved the issue “Splitter resizing does not work as expected if it has an iframe element”.

TextBox

Bug Fixes

  • #261031 - Issue with “Invalid Date message on TextBox while bind json string” has been resolved.

Toolbar

New Features

  • #252821 - Provided support to Enable/Disable the toolbar item by using the Disabled property.