Hello Everyone,
I am upgrading a module to DNN 6.1.2 and my RadProgressManager seems to not be working anymore. I makes the called correctly to the code behind file and the progress is updated but the progress bar and the time elapsed never changes. I used fiddler to see what was happening with the responses and this was the results of my testing.
// DNN 6.1.2
var rawProgressData = {InProgress:false,ProgressCounters:false};
// DNN 5.6.6
var rawProgressData = {InProgress:true,ProgressCounters:true,SecondaryTotal:'4',SecondaryValue:'2',SecondaryPercent:'50',CurrentOperationText:'Exporting Portal: Test'};
This is the code that I am using:
-Chris