05-13-2015 02:05 AM
Hej.
Have do i make a call from a Embeddeb Web page, og should I load my embeddeb page in an other way to make the call.
In CAD i was easy with the pages in the build in browser, and i want the same functionality i finesse.
Best regards
Thomas
05-15-2015 12:33 PM
When you say Embedded Web Page, do you mean an iframe? There is a sample gadget, screen pop, that uses an iframe.
05-17-2015 11:39 PM
Hey.
Yes - I mean a iFrame.
As far as i can see the ScreenPop sample dont have click-to-call from a Iframe. It has only putting CallVariable to an Iframe.
I want to make a call from a webpage in a Iframe .
/Thomas
05-19-2015 01:01 AM
I have resolved this by using Ajax instead of a IFrame
<div>
<script type="text/javascript">
$(document).ready(function() {
$.get("https://poc5-iis2.poc5.testlab.local/uccxdialer/call2.asp", function (data) {
$('#replaceme').html(data);
});
});
</script>
<div id="replaceme"></div>
</div>
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide