* Called by the Calendar component. * **Note:** when the user presses the "<" button in the calendar header (same as "PageUp") * @protected
()
| 461 | * @protected |
| 462 | */ |
| 463 | _showPreviousPage() { |
| 464 | const pageSize = this._getPageSize(); |
| 465 | this._modifyTimestampBy(-pageSize); |
| 466 | |
| 467 | const amountInYears = pageSize * this._getRangeSize(); |
| 468 | this._modifyGridStartBy(-amountInYears); |
| 469 | } |
| 470 | |
| 471 | /** |
| 472 | * Called by the Calendar component. |
nothing calls this directly
no test coverage detected