* Set one data row to the active state.
(datum: object)
| 776 | * Set one data row to the active state. |
| 777 | */ |
| 778 | activate(datum: object) { |
| 779 | return new Promise<void>((resolve, reject) => { |
| 780 | this._animator.activate(datum).then(() => { |
| 781 | this._details.render(); |
| 782 | resolve(); |
| 783 | }); |
| 784 | }); |
| 785 | } |
| 786 | |
| 787 | /** |
| 788 | * Deactivate item. |
no test coverage detected