Hi,
I can’t set my window to be larger than a certain size (changing the width/height doesn’t affect it).
I can’t change the width to be 1200 for example – it won’t make any difference.
My window definition is –
$(“#applytowindow”).jqxWindow(
{
height: 500,
width: 900,
theme: ‘darkblue’,
autoOpen:false,
resizable: true ,
title:’My Details’
});
What possibly is affecting it is –
1. The entire page is loaded in an IFRAME (which is as wide as the entire screen though)
2. In the page I have tabs which the content is set by –
$.get(url, function (data) {
$(‘#rules’).html(data);
})
Any idea? is it perhaps a zIndex issue?
Thanks.