cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
546
Views
0
Helpful
3
Replies

MakeCall from embeddeb Webapp

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

Please rate helpful posts and if applicable mark "Accept as a Solution".
Thanks, Thomas G. J.
3 Replies 3

ewindgat
Level 5
Level 5

When you say Embedded Web Page, do you mean an iframe? There is a sample gadget, screen pop, that uses an iframe.

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

Please rate helpful posts and if applicable mark "Accept as a Solution".
Thanks, Thomas G. J.

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>

Please rate helpful posts and if applicable mark "Accept as a Solution".
Thanks, Thomas G. J.