Yii2 comes with a great debug module.
Sadly, I can not view Ajax request. It seems that only standard request show up in the log.
I would expect that under Requests/Last 10, I could go back to an Ajax POST request.
Is there a way to do that?
=====
Update: The accepted answer is correct. But, it turned out that my problem was elsewhere. I was running the site from a testscript with url: test.php/controller/action
In that case, Yii2 ActiveForm includes an action controller/action in the form. It omits the entry-script. I wonder if this is a bug? Or is this intended behavior?
Of course, my debug modules is only attached via the test entry-script, and therefore missed recording the ajax POST request.