How can I help you?
Essential Studio® for Blazor Release Notes
Common
New Features
- Migrated to .NET Core 3.1.1.
Bug Fixes
-
#260870,F150414- ResolvedSystem.NullReferenceExceptionissue when deploy the syncfusion blazor application in production/server machine.
Dashboard Layout
Breaking Changes
-
Now, the
Columnsproperty andSizeX,SizeY,MaxSizeX,MaxSizeY,MinSizeX,MinSizeYpanel properties accept only the integer values instead of double values. -
Now, the
ContentandHeaderpanel properties accept only RenderFragment values instead of string values.
Dialog
Bug Fixes
-
F150397- The issue with conditional based rendering ofDialogbuttons has been resolved. -
#262335,F150857- Issue with “Dialog button click action not work” has resolved.
DropDownList
Bug Fixes
-
#259338, #260803, #259645, #259640- Issue with “popup not opening after the few selection” has been resolved. -
#261047- Now,GroupTemplateis updated to dropdownlist popup. -
#262050- Now,Enabledproperty is updated while change the property on dynamically.
Grid
Bug Fixes
-
#261428-Pdfexporting is now working properly with customdatetimeformats. -
#259772- Performance has been improveded when hiding columns usingColumnChooser. -
#261022-OnActionCompleteevent is now triggered during refresh. -
F150402- Updating date values usingDatePickerinDialogTemplateis 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-FailureEventArgsis now contains the exceptions from the server side.
Breaking Changes
-
#261428- Inserted data can now be model bounded at the server side usingCRUDModel<T>forUrlAdaptor.
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- Providedcancelargument inbeginEditevent to prevent the open action of the editor.
Maps
New Features
-
#256121- Provided support to toggle the panning functionality in maps control by using theEnablePanningproperty.
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 thegetSelectedHtmlpublic method.
Bug Fixes
-
F150900,#262443- Resolved the console error occured when destroy aRichTextEditorcomponent.
Schedule
New Features
-
#260919- Introduced the public methodGetSelectedElementsto 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 toEnable/Disablethe toolbar item by using theDisabledproperty.