Essential Studio for Blazor Release Notes
Common
New Features
- Migrated to .NET Core 3.1 Preview 2.
Grid
Bug Fixes
-
#F148333
,#253573
-RowSelected
event is not triggered during multiple selection is now resolved. -
#253326
- Script error throws while performing drag and drop when grid inside the schedule component is now resolved. -
#F148721
- Drag and drop not working when using Custom Adaptor is now resolved. -
#250256
- Updating values in Grid misbehaves when having a Field name as ‘id’ for a column is now resolved. - Custom Component disappears when using
Filterbar
template is now resolved.
New Features
-
#249080
,#251565
,#F148304
- Provided support to inheritDataAdaptor
fromOwningComponentBase
and to use Dependency injection. -
#F148119
- Provided support to show grouped details in column aggregate. -
#251425
-OnResizeStart
andResizeStopped
events provided for resize actions. - Pager Template support has been Provided.
Breaking Changes
An Integer type argument is added for the BatchUpdate
and BatchUpdateAsync
method of Data Adaptor Class.
Previous
public override object BatchUpdate
(DataManager dm
, object Changed, object Added, object Deleted, string KeyField
, string Key){
// Custom Code
}
public override object BatchUpdateAsync
(DataManager dm
, object Changed, object Added, object Deleted, string KeyField
, string Key){
// Custom Code
}
Now
public override object BatchUpdate
(DataManager dm
, object Changed, object Added, object Deleted, string KeyField
, string Key, int
DropIndex
){
// Custom Code
}
public override object BatchUpdateAsync
(DataManager dm
, object Changed, object Added, object Deleted, string KeyField
, string Key, int
DropIndex
){
// Custom Code
}
Tab
Bug Fixes
-
#148829
,#148855
- The content of the tab items are rendered properly when add or remove tab items dynamically or set value toDisabled
property dynamically.