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, theOnBeforeClickevent triggers while clicking the chips. -
## 256381- Now, theSelectedChipsproperty 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 theteltype intoNumericTextBoxwhile change on dynamically.
Tab
New Features
-
## 248794,## 258040,## 259943,## 261965,## 151074- Provided support to hide/show the tab items usingVisibleproperty.
<EjsTab>
<TabItems>
<TabItem Visibile="true" Content="Tab Conetent"></TabItem>
...
</TabItems>
</EjsTab>-
I260592- Provided support to load all the tab contents on page loading usingLoadOnproperty 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
Offsetproperty in the Pointers and Ranges takesnumbervalues as input and now it supportsstringvalues 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 withCustomAdaptorandDialogTemplate. -
## 259019- Edited row details is now available inside theEditTemplatewhile using dynamic objects. -
## 261442- Edit operation is now working properly when definingDropDownListwith text and value pair inEditTemplate.
DataManager
Bug Fixes
-
## 258307-ODataV4Adaptorbatch operation with Insert and Update operations are now working fine. -
## 259062-ODataV4AdaptorCRUDoperations withGuidtype as key is now working properly.
Toolbar
New Features
-
## 150746- Provided support to hide/show the toolbar items usingVisibleproperty.
<EjsToolbar>
<ToolbarItems>
<ToolbarItem Text="Cut" Visible="true"></ToolbarItem>
...
</ToolbarItems>
</EjsToolbar>