debugging question

0
Hi, I would like to debug the behavior of the default cancel button on a form with a dataView and nested inside another dataView and aDataViewList. The form does not close after clicking the default Cancel button. When I hit F5 I'm sent right back to the home page. After re-opening the same Form and hitting the Cancel button, the Form closes without a problem. What would be the best method to debug this behavior? Replace the default button by a micro flow that rolls back the object calling the form and closes the form? That way at least I can set a breakpoint. However, I'm not sure if this is the way to go.
asked
1 answers
5

The first thing to check is the javascript console: navigate to index-console.html, and use firebug or the browser's developer tools to check for errors. There might be a validation error, a server error or a javascript error which keeps the form from closing.

answered