Calendar: Alt + Up Arrow support added
parent
91b362b6a8
commit
f8d27530c8
|
@ -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();
|
||||
|
|
|
@ -116,12 +116,16 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td><i>space</i></td>
|
||||
<td>Selects the date, closes the popup and moves focus to the input element.</td>
|
||||
<td>Closes the popup and moves focus to the input element.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><i>up arrow</i></td>
|
||||
<td>Moves focus to the same day of the previous week.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><i>alt</i> + <i>up arrow</i></td>
|
||||
<td>Closes the popup and moves focus to the input element.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><i>down arrow</i></td>
|
||||
<td>Moves focus to the same day of the next week.</td>
|
||||
|
@ -148,7 +152,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td><i>shift</i> + <i>page up</i></td>
|
||||
<td>Changes the date to previous year in date picker mode. Has no effect in month or year picker</td>
|
||||
<td>Changes the date to previous year in date picker mode. Has no effect in month or year picker.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><i>page down</i></td>
|
||||
|
@ -156,7 +160,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td><i>shift</i> + <i>page down</i></td>
|
||||
<td>Changes the date to next year in date picker mode. Has no effect in month or year picker</td>
|
||||
<td>Changes the date to next year in date picker mode. Has no effect in month or year picker.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
Loading…
Reference in New Issue