* Set one data row to the active state.
(datum)
| 9928 | /** |
| 9929 | * Set one data row to the active state. |
| 9930 | */ activate(datum) { |
| 9931 | return new Promise((resolve, reject)=>{ |
| 9932 | this._animator.activate(datum).then(()=>{ |
| 9933 | this._details.render(); |
| 9934 | resolve(); |
| 9935 | }); |
| 9936 | }); |
| 9937 | } |
| 9938 | /** |
| 9939 | * Deactivate item. |
| 9940 | */ deActivate() { |
no test coverage detected