Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
5.4
Description
Often, for testing, it is necessary to know when an Ajax request has completed. This is currently accomplished via sleeps and such (in Tapestry's built-in test suite). For Ajax requests via the t5/core/dom:ajaxRequest API, Tapestry can track how many Ajax requests are active, and set an attribute on the body element to indicate if there are any active requests.
The body attribute "data-ajax-active" will be "true" when there is at least one Ajax request and will revert to "false" when all requests have completed succesfully, or failed with an error or exception.
This is similar to the "data-page-initialized" attribute; it is on the body element to make it easier to query it using CSS.