Implement real time data for recovery workflow details

Implemented real time data for notification recovery workflow details.

Change-Id: I8d8c909b0844af54c492fe046892e9e188d5460a
This commit is contained in:
niraj singh 2019-03-08 12:56:42 +00:00
parent 58989c3f41
commit e05a1822db
1 changed files with 12 additions and 0 deletions

View File

@ -1 +1,13 @@
{{ table.render }}
<div id="noturl" hidden>detail?tab=notification_details__notification_progress_details</div>
<script>
setTimeout(function(){
var $url= $("#noturl").text();
$.ajax({
url: $url,
}).done(function(res) {
$("#notification_details__notification_progress_details").html(res);
});
},3000);
</script>