I'm trying to implement the JQuery-UI Dialog Widget so that the entire screen (and more) is completely populated by Dialogs of different width and position.
But I'm facing two problems:
1) I can not set the two options in JQuery UI. Either accept one or accept the other. The code I'm using is this:
$( function() {
$( "#lub" ).dialog({
position: { my: "center top", at: "left top+150", of: window }
width: 500
});
} );
Even if I give a "macaronic" solution to the problem, there is still another problem:
2) I can not make the Dialog Widget appear outside the page display area. There is no number that I inform that causes the window to appear where I want it. The code in the other window looks like this:
$( function() {
$( "#rank" ).dialog({
position: { my: "left top", at: "left top+1530", of: window }
});
} );