You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| beforeRemoveAction | Function called before each remove action (with minus menu) | Function | False |`(key, keyPath, deep) => new Promise(resolve => resolve())`|
| beforeRemoveAction | Function called before each remove action (with minus menu) | Function | False |`(key, keyPath, deep, oldValue) => new Promise(resolve => resolve())`|
218
218
219
219
This function must return a `Promise`. In case of resolve of this one, the remove will be done. Otherwise, in reject, nothing will be done.
| beforeAddAction | Function called before each add action (with plus menu) | Function | False |`(key, keyPath, deep, newValue) => new Promise(resolve => resolve())`|
234
+
235
+
This function must return a `Promise`. In case of resolve of this one, the remove will be done. Otherwise, in reject, nothing will be done.
| beforeUpdateAction | Function called before each update action | Function | False |`(key, keyPath, deep, oldValue, newValue) => new Promise(resolve => resolve())`|
250
+
251
+
This function must return a `Promise`. In case of resolve of this one, the remove will be done. Otherwise, in reject, nothing will be done.
0 commit comments