diff --git a/components/lib/calendar/Calendar.vue b/components/lib/calendar/Calendar.vue index 544eacd97..70bf05f62 100755 --- a/components/lib/calendar/Calendar.vue +++ b/components/lib/calendar/Calendar.vue @@ -2031,31 +2031,37 @@ export default { case 'ArrowUp': { cellContent.tabIndex = '-1'; - let prevRow = cell.parentElement.previousElementSibling; - if (prevRow) { - let tableRowIndex = DomHandler.index(cell.parentElement); - const tableRows = Array.from(cell.parentElement.parentElement.children); - const prevTableRows = tableRows.slice(0, tableRowIndex).reverse(); + if (event.altKey) { + this.overlayVisible = false; + this.focused = true; + } else { + let prevRow = cell.parentElement.previousElementSibling; - let hasNextFocusableDate = prevTableRows.find((el) => { - let focusCell = el.children[cellIndex].children[0]; + if (prevRow) { + let tableRowIndex = DomHandler.index(cell.parentElement); + const tableRows = Array.from(cell.parentElement.parentElement.children); + const prevTableRows = tableRows.slice(0, tableRowIndex).reverse(); - return !DomHandler.getAttribute(focusCell, 'data-p-disabled'); - }); + let hasNextFocusableDate = prevTableRows.find((el) => { + let focusCell = el.children[cellIndex].children[0]; - if (hasNextFocusableDate) { - let focusCell = hasNextFocusableDate.children[cellIndex].children[0]; + return !DomHandler.getAttribute(focusCell, 'data-p-disabled'); + }); - focusCell.tabIndex = '0'; - focusCell.focus(); + if (hasNextFocusableDate) { + let focusCell = hasNextFocusableDate.children[cellIndex].children[0]; + + focusCell.tabIndex = '0'; + focusCell.focus(); + } else { + this.navigationState = { backward: true }; + this.navBackward(event); + } } else { this.navigationState = { backward: true }; this.navBackward(event); } - } else { - this.navigationState = { backward: true }; - this.navBackward(event); } event.preventDefault(); diff --git a/doc/calendar/AccessibilityDoc.vue b/doc/calendar/AccessibilityDoc.vue index 60115d4db..c253505c0 100644 --- a/doc/calendar/AccessibilityDoc.vue +++ b/doc/calendar/AccessibilityDoc.vue @@ -116,12 +116,16 @@