| cksanjose@gmail.com 2006-11-19, 7:36 pm |
| Hi Everyone!
I'm working on an intranet app that is designed for IE 6 only.
When I'm opening a modal window, the scroll bar on the div is not
showing.
This is my stylesheet and the javascript function to open the dialog
box:
..printFormScrollRegion
{
overflow-y: scroll;
height: 700px;
}
function openModalDialog()
{
var opts = new Object();
opts.url = "adjuster_expense_approval.jsp";
opts.title = "eVoucher Approval";
opts.opener = window;
var features = "dialogHeight: " + 820 + "px; dialogWidth: " + 1024+
"px; status: yes; help: no;";
var enc = encodeURI(opts.title);
window.showModalDialog("dialogframeplain.jsp?omitclose=true&title="+enc,
opts, features);
}
Any help is appreciated.
Thanks
Cesar
|