[ADF-4522] Metadata value is not rolled back upon error (#5550)

* * initial commit

* * removed breaking change

* * fixed ts

* * fixed minor changes

* * fixed changes

* * minor changes

* * fixed unit test

* * docs added

* * fixed date clear problem

* * fixed unit test
This commit is contained in:
dhrn
2020-03-17 16:17:08 +05:30
committed by GitHub
parent becf45d150
commit d720d36670
18 changed files with 191 additions and 65 deletions

View File

@@ -126,6 +126,16 @@ respondToCardClick(cn: ClickNotification) {
Note that this function will only be called if the `clickable` property of the model object is set to true for this item.
## Update cardview update item
[`updateElement`](../../../lib/core/card-view/services/card-view-update.service.ts) function helps to update the card view item. It takes the [`CardViewBaseItemModel`](../../../lib/core/card-view/models/card-view-baseitem.model.ts) type object as parameter.
Example
```javascript
this.cardViewUpdateService.updateElement(cardViewBaseItemModel)
```
## See also
- [Card view component](../components/card-view.component.md)