This topic is locked
[SOLVED]

 Calling an additional page from a button

6/19/2019 8:41:46 PM
PHPRunner General questions
M
marcelorribas author

Hello,

I´m using the code below to call and addition list page from a button, but it´s not working. Instead to display the

additional page it´s shows the default list page:

var win = Runner.displayPopup( {

url: "vcdtusr_list.php?page=list1",

header: 'XXXXX',//

width: 550,

height: 500,

footer: '<a href="#" onclick="window.win.close();">Fechar Janela</a>',

afterCreate: function(win) {

window.win = win;

}

})


Thanks in advance,
Marcelo

admin 6/20/2019

Make sure that URL of your additional page is correct.

M
marcelorribas author 6/20/2019

Thanks Sergey.

It´s working now.

Regards,

Marcelo