Is there any way to render the Stimulsoft Viewer in a bootstrap popup?
I'm trying to do that, but the report loads just once.
I make an ajax request and I want to put the response inside a popup.
I'm using Stimulsoft.Web 2017.1.6
result: is the html that I want to put inside the popup .
divReport: is the id of the popup.
Code: Select all
function(result) {
$('#divReport').modal({ backdrop: true, show: true});
$('#divReport .modal-body div').html(result);
};
Regards