The idea is to show a confirmation dialog before user leave the page while he is in batch edition mode in a grid.
However, I didn't find the event I can hook to show this dialog.
Can someone help me how can I tell the viewModel that user is in batch edit mode when url changes?
```
candeActivate() {
if(inBatchEditMode){
dialog.show()
}
}
```