Essential Studio for Blazor Release Notes
v17.2.52
September 18, 2019
AccumulationChart
Features
- Support for tooltip template has been provided.
AutoComplete
New Features
-
#242318
,#242424
- ProvidedFilter
method to customize the filtering based on the query and data source.
Chart
Features
- Support for tooltip template has been provided.
Circular Gauge
Features
- Support for tooltip template has been provided.
ComboBox
New Features
-
#242318
,#242424
- ProvidedFilter
method to customize the filtering based on the query and data source.
Common
New Features
- Migrated to .NET Core 3.0 RC1.
DropDownList
New Features
-
#242318
,#242424
- ProvidedFilter
method to customize the filtering based on the query and data source.
Bug Fixes
-
#F147313
- Resolved the compilation issue when bind the data source as list of string. -
#248327
- Now, you can clear the selected value inValueChange
event.
Grid
Bug Fixes
- Invalid
args
inCommandClicked
handler when using multiple custom commands has been fixed. -
243390
- Template values are now properly retrieved while refreshing after a certain action is performed in grid. -
246867
- Provided support forRecordDoubleClick
event inIOS
devices(IPad
,IPhone
). -
243677
- Column template gets hidden for each editing action has been fixed.
Breaking Changes
-
GetColumns
,GetVisibleColumns
andGetForeignKeyColumns
, methods type is changed fromList<ColumnModel>
toList<GridColumn>
. -
GetColumnByIndex
,GetColumnByField
,GetColumnByUid
methods type is changed fromColumnModel
toGridColumn
.
Previous
@{
List<ColumnModel> gridColumns = await this.grid.GetColumns();
List<ColumnModel> visibleColumns = await this.grid.GetVisibleColumns();
List<ColumnModel> fkColumns = await this.grid.GetForeignKeyColumns();
ColumnModel columnByIndex = await this.grid.GetColumnByIndex();
ColumnModel columnByField = await this.grid.GetColumnByField();
ColumnModel columnByUid = await this.grid.GetColumnByUid();
}
Now
@{
List<GridColumn> gridColumns = await this.grid.GetColumns();
List<GridColumn> visibleColumns = await this.grid.GetVisibleColumns();
List<GridColumn> fkColumns = await this.grid.GetForeignKeyColumns();
GridColumn columnByIndex = await this.grid.GetColumnByIndex();
GridColumn columnByField = await this.grid.GetColumnByField();
GridColumn columnByUid = await this.grid.GetColumnByUid();
}
Linear Gauge
Features
- Support for tooltip template has been provided.
ListBox
Bug Fixes
-
#247253
- Resolved the Script error when dragging and dropping the items in the listbox.
Maps
Bug Fixes
-
#F147377
- The issue with rendering multiple markers in maps component has been fixed. -
#F147377
- The issue with plotting marker in the correct location on the map has been fixed.
Breaking Changes
Now, the following tags has been renamed.
Previous Name | Modified Name |
---|---|
MapsNavigationLineSettings | MapsNavigationLines |
LayerDataLabelBorder | MapsLayerDataLabelBorder |
LayerDataLabelTextStyle | MapsLayerDataLabelTextStyle |
LayerMarkerClusterBorder | MapsLayerMarkerClusterBorder |
LayerMarkerClusterLabelStyle | MapsLayerMarkerClusterLabelStyle |
LayerHighlightSettings | MapsLayerHighlightSettings |
LayerHighlightBorder | MapsLayerHighlightBorder |
LayerSelectionSettings | MapsLayerSelectionSettings |
LayerSelectionBorder | MapsLayerSelectionBorder |
LayerTooltipSettings | MapsLayerTooltipSettings |
LayerTooltipBorder | MapsLayerTooltipBorder |
LayerTooltipTextStyle | MapsLayerTooltipTextStyle |
NavigationLineHighlightSettings | MapsNavigationLineHighlightSettings |
NavigationLineSelectionSettings | MapsNavigationLineSelectionSettings |
MultiSelect
New Features
-
#242318
,#242424
- ProvidedFilter
method to customize the filtering based on the query and data source.
NumericTextBox
Bug Fixes
-
#246554
- Now, provided support forint
data type assign to generic type property.
RichTextEditor
Bug Fixes
-
F147279
- Resolved theowner document is null
issue that raised in the Rich Text Editor at Microsoft Edge browser.
Schedule
Bug Fixes
-
#147292
,#248061
- The issue with updating the start and end time in editor window has been fixed. -
#146497
- The issue with template rendering in client-side localisation application has been fixed.
Smith Chart
Features
- Support for tooltip template has been provided.
Sparkline
Features
- Support for tooltip template has been provided.
Spinner
New Features
- Provided support for creating and showing or hiding the Spinner based on specific target using the public utility functions.
StockChart
Features
- Support for tooltip template has been provided.
Toast
Bug Fixes
-
#248668
- Resolved the issue with Toast template not rendered for the first time.
TreeMap
Features
- Support for tooltip template has been provided.
Uploader
New Features
-
#246672
- ProvidedBeforeUpload
event to add a custom header / custom form data with upload request.
Bug Fixes
-
#247009
- Resolved the empty file list generation when upload multiple files with template.