Hi,
I tried to get a large file from my database, usually it takes many seconds to get on completed trigger on AJAX, I tried to put on progress event to indicate to the user the progress by updating a ProgressBar value by int(AJAX.progress*100), the problem is that On progress event never trigger, am I missing something to get this to work?
this is my loop:
ON start of Layout -> AJAX.Request ("LargeFile")
AJAX On Progress -> ProgressBar.SetProgress int(AJAX.progress*100)
Thanks