In the Telerik Comment Widget, a button called "Accept All Track Changes", which accepts everything within the body, has a popup when a user clicks on it. The problem is I'm trying to make it 508 compliant so that when the popup happens, it focus's on the "OK" button so the user can tab back and forth between that and Cancel. Currently there is no way to tab onto this button since it is a popup. I tried:
$('.Default').on('show', function () {
$('.ok').focus();
});
The .Default class is the the container and the "ok" class is the button. Is there a way to have the OK button be the focus on popup?