Essential Studio for Blazor Release Notes
v18.4.42
February 9, 2021
Common
Bug Fixes
-
## 292006
- Improper Culture updation between different browser tabs and machines issue has been resolved.
TreeView
Bug Fixes
-
## 309136
- The issue with “Animation settings is not working in the TreeView” has been resolved.
DropDownButton
-
## 312086
- Provided@attribute
support for adding custom attributes to dropdown items.
MultiSelect
New Features
-
## 310697
- Now, you can provide collection of object type to Value property.
<SfMultiSelect TValue="List<Countries>" TItem="Countries" @bind-Value="@MultiValue" Placeholder="Select a country" DataSource="@Country">
<MultiSelectFieldSettings Text="Name" Value="Code"></MultiSelectFieldSettings>
</SfMultiSelect>
@code {
private List<Countries> MultiValue { get; set; } = new List<Countries>() { new Countries() { Name = "Australia", Code = "AU" } };
public class Countries
{
public string Name { get; set; }
public string Code { get; set; }
}
private List<Countries> Country = new List<Countries>
{
new Countries() { Name = "Australia", Code = "AU" },
new Countries() { Name = "Bermuda", Code = "BM" },
new Countries() { Name = "Canada", Code = "CA" }
};
}
Bug Fixes
-
## 313805
- Issue with “theValue
property is not updated while clicking on the grouping label checkbox in the popup” has been resolved.
MaskedTextBox
Bug Fixes
-
312016
,312020
- Issue with “performance issue occurs when place the 14+ masked textbox component on same page” has been resolved.
Tab
Bug Fixes
-
## F161648
- Now the value of SelectedItem is -1 when there is no tab items.
Schedule
Bug Fixes
-
## 309826
- An issue with “the appointments are not rendered properly when we applying scale as transform” has been fixed. -
## 312124
- An issue “the appointments are not getting updated when we callStateHasChanged
from another page” has been fixed.
Grid
Bug Fixes
-
## 310204
,## 313729
- PagerDropdown not showing any text on clicking “All” option in dropdown is fixed. -
## F161219
- Incorrect tooltip text is shown in filter dialog after performing search(in Excel and Checkbox filter) is resolved. -
## 313357
- Exception throws while binding more than one record in Grid with CSLA Framework based datasource is fixed. -
## 307970
,## 309376
,## 312888
- ODataV4 Patch request ignores boolean value false is fixed. -
## F161212
- Grouped column name is displayed wrongly in exported file is solved.
New Features
-
## 306086
- Provided support for passing the arguments inActionBegin
andActionComplete
events on currently selected columns from the column chooser. -
## F159206
- Provided ExcelExport support for Grid with Virtaulization and Grouping.