This topic contains 3 replies, has 2 voices, and was last updated by  Peter Stoev 11 years, 8 months ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
  • arrange window #21087

    mkdodos
    Participant

    Hi,

    I have two window, the first opened window is show on top of the second open window.
    How to let the second open window show on top of the first opened window?

    Thanks,
    Mark

    arrange window #21100

    Peter Stoev
    Keymaster

    Hi Mark,

    Could you provide some sample code which illustrates your scenario?

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com/

    arrange window #21328

    mkdodos
    Participant

    Hi Peter,

    Please see the screencast http://youtu.be/Bnk0TFq4Ug8 and the code below.

    Thanks,
    Mark

    $(‘#jqxWindow’).jqxWindow({
    width: 600, height: 500,
    autoOpen: false, theme: theme, resizable: false
    });

    $(‘#jqxWindow2’).jqxWindow({
    width: 850, height: 500,
    autoOpen: false, theme: theme, resizable: false
    });

    $(‘#jqxgrid’).bind(‘cellclick’, function(event) {
    if (column.text == ‘size’) {
    $(‘#jqxWindow’).jqxWindow(“open”);

    }
    })

    $(‘#jqxgrid_arrdone’).bind(‘cellclick’, function(event) {
    if (column.text == ‘done_size’) {
    $(‘#jqxWindow’).jqxWindow(“open”);
    }
    })

    arrange window #21332

    Peter Stoev
    Keymaster

    Hi,

    Each window has a method called “bringToFront”. You may use it to display a window above another window through the API.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com/

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

You must be logged in to reply to this topic.