Reputation: 129
I have an Extbase extension starting some background activities. To monitor the overall progress, there is a view displaying current state. How can this view be reloaded, say every 10-15 seconds? The best thing was to reload only this part of the page.
Upvotes: 1
Views: 879
Reputation: 5840
Use AJAX. To get the result of a specific action instead of the whole page, you can use the extension typoscript_rendering - it's made for this exact purpose.
To use it, you need to do something along these lines:
helhum:uri.ajaxAction
from the above-mentioned extension. Put it into some data-attribute or something.Upvotes: 1