jQWidgets Forums

jQuery UI Widgets Forums Dialogs and Notifications Window Dragging Modal Window selects all on page

This topic contains 1 reply, has 2 voices, and was last updated by  ivailo 9 years, 7 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Dragging Modal Window selects all on page #77042

    pedro_prt
    Participant

    I have a modal window opened on top of another window (not modal). When I drag and drop that modal window, everithing on the page is selected.
    My code seems to be normal:

    $(jdiv).jqxWindow({
    showCollapseButton: true,
    height: item.janela_altura,
    width: item.janela_largura,
    maxHeight: 1000,
    maxWidth: 1000,
    resizable: false,
    isModal: item.isModal,
    title: item.menu_titulo,
    theme: ‘energyblue’,
    //autoOpen: true, //pedro 06/07
    closeButtonAction: ‘close’, //pedro 06/07
    initContent: function () {
    $.get(frm + ‘.php’, function (data) {
    $(‘#corpo_001_’ + item.menu_nome).html(data);
    }).done(function () {
    var funcao_init = eval(‘init_’ + item.cdg_frm);
    funcao_init();
    if (callback) {
    return callback($(jdiv));
    }
    }).fail(function (jqxhr, settings, exception) {
    console.error(exception);
    });
    }
    });

    Can somebody help with this ?

    Tks

    Dragging Modal Window selects all on page #77070

    ivailo
    Participant

    Hi pedro_prt,

    From this part of code we can’t see that behavior.
    Please try to update to the latest version 3.9.0.
    If this doesn’t help – send working fiddle/jseditor link with the rest of your code.

    Best Regards,
    Ivailo Ivanov

    jQWidgets Team
    http://www.jqwidgets.com

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.