+1
Completed

Capture CTRL+F on the host page

Grdnkln 8 years ago updated 8 years ago 2

Super simple but I think it would be super useful.


On the host page for your ScreenConnect session, where it lists all of the hosts, there's a convenient little "search" bar in the top right corner that you can use to search for computer names.


My suggestion is simple - add a Javascript eventlistener so that if you hit "CTRL+F", rather than popping up the browser's native "find" feature (which is useless on this page) it instead moves the focus into that search box.


Folks like me who make a lot of use of keyboard shortcuts would love you for it!


Something like this that I pulled off of StackOverflow would work I think:


window.addEventListener("keydown",function (e) {
if
(e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
}
})

Answer

Answer
Completed

Grdnkln, I understand your request but by developer design when you begin typing on the host page (whether in support, meet, or access section) focus will shift automatically into the search box. We don't want to steal basic functionality as it is not best practice. Hope this helps, let me know if you have anymore requests.

Answer
Completed

Grdnkln, I understand your request but by developer design when you begin typing on the host page (whether in support, meet, or access section) focus will shift automatically into the search box. We don't want to steal basic functionality as it is not best practice. Hope this helps, let me know if you have anymore requests.

Oh okay that makes sense, then there is no reason to hit CTRL+F at all! Even better.