
Hye everyone,
i have to open aspx page inside a lightbox.
i was thinking to use existing CRM lightbox which is used behind process dialog
so any suggestions ?
*This post is locked for comments
I have the same question (0)i propose that you integrated JQUEY UI library as a webresources inside dyanmics crm or use it directley from internet by specifing external link in the importe.
Then you can integrate a new webresource that contain the javascript code that open the dialog :
<html>
<head>
<link rel="stylesheet" href="jquery-ui.min.css">
<script src="external/jquery/jquery.js"></script>
<script src="jquery-ui.min.js"></script>
<script>
$(function() {
$("#myLightBox").dialog();
});
</script>
</head>
<body>
<body>
<div id="myLightBox">
my lightbox is diplayed
</div>
<body>
</body>
</html>