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
- ResolvedSystem.NullReferenceException
issue when deploy the syncfusion blazor application in production/server machine.
Dashboard Layout
Breaking Changes
-
Now, the
Columns
property andSizeX
,SizeY
,MaxSizeX
,MaxSizeY
,MinSizeX
,MinSizeY
panel properties accept only the integer values instead of double values. -
Now, the
Content
andHeader
panel properties accept only RenderFragment values instead of string values.
Dialog
Bug Fixes
-
F150397
- The issue with conditional based rendering ofDialog
buttons 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,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 customdatetime
formats. -
#259772
- Performance has been improveded when hiding columns usingColumnChooser
. -
#261022
-OnActionComplete
event is now triggered during refresh. -
F150402
- Updating date values usingDatePicker
inDialogTemplate
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 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
- Providedcancel
argument inbeginEdit
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 theEnablePanning
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 thegetSelectedHtml
public method.
Bug Fixes
-
F150900
,#262443
- Resolved the console error occured when destroy aRichTextEditor
component.
Schedule
New Features
-
#260919
- Introduced the public methodGetSelectedElements
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 toEnable/Disable
the toolbar item by using theDisabled
property.