Essential Studio for Blazor Release Notes
v17.4.47
February 05, 2020
Common
New Features
- Compatibility support provided for WebAssembly to 3.2.0 Preview 1.
Bug Fixes
- Issue with “two-way binding value is not updating after first selection” has been resolved.
Chips
New Features
-
## 256381
- Now, theOnBeforeClick
event triggers while clicking the chips. -
## 256381
- Now, theSelectedChips
property maintains the value field that is provided to the chip.
Bug Fixes
-
## 260053
- Now, the chip renders correctly when it is dynamically rendered.
TextBox
### Bug Fixes
-
## F150945
- now, accept thetel
type intoNumericTextBox
while change on dynamically.
Tab
New Features
-
## 248794
,## 258040
,## 259943
,## 261965
,## 151074
- Provided support to hide/show the tab items usingVisible
property.
<EjsTab>
<TabItems>
<TabItem Visibile="true" Content="Tab Conetent"></TabItem>
...
</TabItems>
</EjsTab>
-
I260592
- Provided support to load all the tab contents on page loading usingLoadOn
property and assign the value asInit
.
<EjsTab LoadOn="ContentLoad.Init">
...
</EjsTab>
Bug Fixes
-
## 150389
- Issue with “Tab is not loading using tab item model and unable to add/remove tab items dynamically in client side hosting model” has been fixed.
Linear Gauge
Breaking Changes
- Previously, the
Offset
property in the Pointers and Ranges takesnumber
values as input and now it supportsstring
values too.
Schedule
Bug Fixes
-
I262803
- Now, the scheduler with resource has been successfully loaded when current view isAgenda
.
Grid
Bug Fixes
-
## 256805
- Read only properties are now working properly during edit action withCustomAdaptor
andDialogTemplate
. -
## 259019
- Edited row details is now available inside theEditTemplate
while using dynamic objects. -
## 261442
- Edit operation is now working properly when definingDropDownList
with text and value pair inEditTemplate
.
DataManager
Bug Fixes
-
## 258307
-ODataV4Adaptor
batch operation with Insert and Update operations are now working fine. -
## 259062
-ODataV4Adaptor
CRUD
operations withGuid
type as key is now working properly.
Toolbar
New Features
-
## 150746
- Provided support to hide/show the toolbar items usingVisible
property.
<EjsToolbar>
<ToolbarItems>
<ToolbarItem Text="Cut" Visible="true"></ToolbarItem>
...
</ToolbarItems>
</EjsToolbar>