« Back to Cisco Webdialer Questions

Window size too small when IE window pops up

Combination View Flat View Tree View
Threads [ Previous | Next ]
The WebDialer URL has been embedded in an HTML page, however, when Internet Explorer pops up the WebDialer window, the window's size is too small. Every user has to scroll down to press the "Dial" button. How can I fix this?

WebDialer expects the popup browser to be open without any status bar or scrollbar. You can use the following javascript to achieve this:
function launchWebDialerWindow( url ) {
webdialer = window.open(url, "webdialer", "status=no,resizable=yes,scrollbars=no,width=320,height=280");
}

This would ensure that there is enough real estate available for the WebDialer screens to show everything properly.