Scheduler: Update Date Navigator How To (#8747)#8776
Open
arman-boyakhchyan wants to merge 2 commits into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the Scheduler “Date Navigator” guide to better explain what the date navigator is, how to customize its buttons via toolbar item options, how to constrain navigation with min/max, and how to hide the navigator by overriding toolbar items.
Changes:
- Expanded the introduction to describe the date navigator as a predefined Scheduler toolbar item backed by a ButtonGroup, with customization examples for jQuery/Angular/Vue/React.
- Updated
min/maxexamples (including Vue/React refactors) and clarified thecustomizeDateNavigatorTextmention. - Added a new section showing how to hide the date navigator by omitting it from
toolbar.items.
Comments suppressed due to low confidence (2)
concepts/05 UI Components/Scheduler/055 Date Navigator.md:135
DxSchedulerModuleis imported in this snippet but not used (there is no@NgModuleexample here). Either remove the import or include the minimal module setup that shows whereDxSchedulerModuleshould be added.
import { DxSchedulerModule } from 'devextreme-angular'
// ...
concepts/05 UI Components/Scheduler/055 Date Navigator.md:184
- This jQuery snippet initializes dxScheduler without a DOM-ready wrapper. If the script executes before the container element exists, initialization can fail. Wrap this code in
$(function() { ... })(or ensure it runs after the container is rendered) to make the example reliable.
<!--tab: index.js-->
$("#scheduler-container").dxScheduler({
// ...
|
|
||
| --- | ||
|
|
||
| You can configure the [customizeDateNavigatorText](/api-reference/10%20UI%20Components/dxScheduler/1%20Configuration/customizeDateNavigatorText.md 'Documentation/ApiReference/UI_Components/dxScheduler/Configuration/#customizeDateNavigatorText') callback to customize the date interval text. To customize the range of available dates available in the date navigator, configure [min](/api-reference/10%20UI%20Components/dxScheduler/1%20Configuration/min.md '/Documentation/ApiReference/UI_Components/dxScheduler/Configuration/#min') and [max](/api-reference/10%20UI%20Components/dxScheduler/1%20Configuration/max.md '/Documentation/ApiReference/UI_Components/dxScheduler/Configuration/#max') properties: |
vladaskorohodova
approved these changes
May 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.