Ctrl + Tab to switch between windows

Hello,

is there a possibillity to switch between opened windows using Ctrl + Tab? This is common windows forms modal dialog switching behavior and this would be great for me to implement into those javascript windows.

Thank you for help. I did not find anything like that in your forum.

BR
Zdenek

Hello,

there isn’t such a ready solution in dhtmlxWindows.

is it possible to catch some event like key press on main page in order to do this functionality somehow myselv? I made once a method that catched F4 hit by user like this one:

//Key check function
this.keyCheck = function(sender) {
var KeyID = (window.event) ? event.keyCode : sender.keyCode;
switch (KeyID) {
//F4
case 115:
if (typeof (sender.callback) != ‘undefined’) {
sender.callback();
}
window.event.cancelBubble = true;
window.event.returnValue = false;
window.event.keyCode = 0;
break;
}
return false;

But it has to be registered on given textbox for example.

BR
Zdenek