Hello, I wonder if it is possible to create an iframe of an external link php plugin like a textfield, and which can draglayer ()

  • thanks for replying, would be very happy if you could put a small demonstration or put any link on the forum that shows how to do it and since I'm from Spain and my English is very bad ye been looking but not what to call it and I'm using html5.

    Thank you very much.

  • I managed to embed it with this:
    pero como hago para que mis plugin puedan mandarles ordenes.


    <body>
    <script> $(function() { $( "#dialog" ).dialog(); }); </script>


    <div class="demo">
    <div id="dialog" title="Basic dialog"> <p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p></div>
    <!-- Sample page content to illustrate the layering of the dialog --><div class="hiddenInViewSource" style="padding:20px;"><p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p><form> <input value="text input" /><br /> <input type="checkbox" />checkbox<br /> <input type="radio" />radio<br /> <select> <option>select</option> </select><br /><br /> <textarea>textarea</textarea><br /></form></div><!-- End sample page content -->
    </div><!-- End demo -->

    </body>

  • krpano would be:

    Code
    <hotspot url="test.png" onclick="js(openpopup())" enabled="true" />

    in the html you have:

    Code
    <script>
      function openpopup(){
       $( "#dialog" ).dialog();
    }
    </script>
    Code
    <div class="demo">
    <div id="dialog" title="Basic dialog"> <p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p></div>
    <!-- Sample page content to illustrate the layering of the dialog --><div class="hiddenInViewSource" style="padding:20px;"><p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p><form> <input value="text input" /><br /> <input type="checkbox" />checkbox<br /> <input type="radio" />radio<br /> <select> <option>select</option> </select><br /><br /> <textarea>textarea</textarea><br /></form></div><!-- End sample page content -->
    </div><!-- End demo -->

    Works only online (or with local access enabled)

  • Good night, took several hours trying to close the popup but no way.
    E proven in the following ways:



    <script>
    function closepopup(){
    self.close(event);
    }
    </script>


    <script>
    function removeData('dialog1'){
    $( "#dialog1" ).dialog();
    }
    </script>


    <script>
    function window.close('dialog1'){
    $( "#dialog1" ).dialog();
    }
    </script>


    <script>
    function closeaa(){
    self.close(event);
    }
    </script>


    onclick="js(self.close(dialog));
    onclick="js(closepopup());
    onclick="js(closepopup(dialog));


    and some more but I do not rememberand I think to be around here but I can not fit it.


    uiDialogTitlebarClose = $('http://www.krpano.com/forum/wbb/#')
    .addClass(
    'ui-dialog-titlebar-close ' +
    'ui-corner-all'
    )
    .attr('role', 'button')
    .hover(
    function() {
    uiDialogTitlebarClose.addClass('ui-state-hover');
    },
    function() {
    uiDialogTitlebarClose.removeClass('ui-state-hover');
    }
    )
    .focus(function() {
    uiDialogTitlebarClose.addClass('ui-state-focus');
    })
    .blur(function() {
    uiDialogTitlebarClose.removeClass('ui-state-focus');
    })
    .click(function(event) {
    self.close(event);
    return false;
    })
    .appendTo(uiDialogTitlebar),

    uiDialogTitlebarCloseText = (self.uiDialogTitlebarCloseText = $(''))
    .addClass(
    'ui-icon ' +
    'ui-icon-closethick'
    )
    .text(options.closeText)
    .appendTo(uiDialogTitlebarClose),

    uiDialogTitle = $('')
    .addClass('ui-dialog-title')
    .attr('id', titleId)
    .html(title)
    .prependTo(uiDialogTitlebar);

    Any idea, Thanks

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!