Closed hugff closed 4 years ago
Hi @hugff,
I encountered the same problem. Please take a look at this --> #15.
Is there any chance of attaching a quick example? Mostly these items are https:// vs http:// calling, especially when crossing domain
Can you try :-
BootstrapDialog.show({
message: $('<div></div>').load('remote.html'),
onshown: function(){alert('displayed');}
});
BootstrapDialog.show({
message: $('<div id="popupContent"></div>'),
onshown: function () {
$("#popupContent").load('remote.html')
}
})
Ok Thanks, This will be a good solution.
Hi,
We are loading the modal's content using:
message: $('<div></div>').load('Sapp?/crmcustomer.newcrminput');
In load page, to try it, we have a simple javascript code like this one : `
`
When we execute "BootstrapDialog.show" the dialog appears but this simple javascript doesn't work.
Thanks for this amazing tool.