diff --git a/concepts/05 UI Components/Scheduler/055 Date Navigator.md b/concepts/05 UI Components/Scheduler/055 Date Navigator.md
index 9bfd57eb20..16d5e33d84 100644
--- a/concepts/05 UI Components/Scheduler/055 Date Navigator.md
+++ b/concepts/05 UI Components/Scheduler/055 Date Navigator.md
@@ -1,8 +1,114 @@
-The date navigator is an element that allows you to change the date displayed on the view.
+The date navigator is a [predefined toolbar item](/Documentation/ApiReference/UI_Components/dxScheduler/Configuration/toolbar/items/) that allows you to change the displayed date in the dxScheduler.

-You can specify the range of available dates in the [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:
+The date navigator is a DevExtreme [ButtonGroup](/api-reference/10%20UI%20Components/dxButtonGroup '/Documentation/ApiReference/UI_Components/dxButtonGroup/') with three buttons: previous date (*'prev'*), next date (*'next'*), and date interval (*'dateInterval'*). You can customize the order of these buttons or add new buttons using [options](/api-reference/10%20UI%20Components/dxScheduler/7%20Interfaces/dxSchedulerToolbarItem/options.md '/Documentation/ApiReference/UI_Components/dxScheduler/Configuration/toolbar/items/#options').**items**:
+
+---
+
+##### jQuery
+
+
+ $("#scheduler-container").dxScheduler({
+ // ...
+ toolbar: {
+ items: [{
+ name: "dateNavigator",
+ options: {
+ items: ['prev', 'dateInterval', 'next', {
+ icon: 'more',
+ onClick() {
+ console.log("The custom button was clicked.")
+ },
+ }]
+ }
+ }]
+ }
+ });
+
+##### Angular
+
+
+
+
+
+
+
+
+
+
+ import { DxSchedulerModule } from 'devextreme-angular'
+ // ...
+ export class AppComponent {
+ dateNavigatorOptions = {
+ items: ['prev', 'dateInterval', 'next', {
+ icon: 'more',
+ onClick() {
+ console.log("The custom button was clicked.")
+ },
+ }]
+ }
+ }
+
+##### Vue
+
+
+
+
+
+
+
+
+
+
+
+##### React
+
+
+ import { Scheduler, Toolbar, Item } from 'devextreme-react/scheduler';
+ // ...
+
+ const dateNavigatorOptions = {
+ items: ['prev', 'dateInterval', 'next', {
+ icon: 'more',
+ onClick() {
+ console.log("The custom button was clicked.")
+ },
+ }]
+ };
+
+ function App() {
+ return (
+
+
+
+
+
+ );
+ }
+
+---
+
+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 the [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:
---
##### jQuery
@@ -11,8 +117,8 @@ You can specify the range of available dates in the [min](/api-reference/10%20UI
$(function() {
$("#schedulerContainer").dxScheduler({
// ...
- min: new Date(2018, 2, 3),
- max: new Date(2018, 4, 3)
+ min: new Date(2026, 2, 3),
+ max: new Date(2026, 4, 3)
});
});
@@ -25,90 +131,107 @@ You can specify the range of available dates in the [min](/api-reference/10%20UI
- import { Component } from '@angular/core';
-
- @Component({
- selector: 'app-root',
- templateUrl: './app.component.html',
- styleUrls: ['./app.component.css']
- })
+ import { DxSchedulerModule } from 'devextreme-angular'
+ // ...
export class AppComponent {
- minDate: Date = new Date(2018, 2, 3);
- maxDate: Date = new Date(2018, 4, 3);
+ minDate: Date = new Date(2026, 2, 3);
+ maxDate: Date = new Date(2026, 4, 3);
}
-
- import { BrowserModule } from '@angular/platform-browser';
- import { NgModule } from '@angular/core';
- import { AppComponent } from './app.component';
-
- import { DxSchedulerModule } from 'devextreme-angular';
-
- @NgModule({
- declarations: [
- AppComponent
- ],
- imports: [
- BrowserModule,
- DxSchedulerModule
- ],
- bootstrap: [AppComponent]
- })
- export class AppModule { }
-
##### Vue
-
##### React
-
- import React from 'react';
+
+ import { Scheduler } from 'devextreme-react/scheduler';
+
+ const minDate = new Date(2026, 2, 3);
+ const maxDate = new Date(2026, 4, 3);
+
+ function App() {
+ return (
+
+ );
+ }
- import 'devextreme/dist/css/dx.fluent.blue.light.css';
+---
- import Scheduler from 'devextreme-react/scheduler';
-
- const min = new Date(2018, 2, 3);
+To hide the date navigator, configure **toolbar**.[items[]](/Documentation/ApiReference/UI_Components/dxScheduler/Configuration/toolbar/items/) and omit *"dateNavigator"*. The following code snippet displays only the *"viewSwitcher"* predefined toolbar item:
- const max = new Date(2018, 4, 3);
+---
+##### jQuery
- class App extends React.Component {
- render() {
- return (
-
- );
+
+ $("#scheduler-container").dxScheduler({
+ // ...
+ toolbar: {
+ items: ['viewSwitcher']
}
- }
- export default App;
+ });
----
+##### Angular
+
+
+
+
+
+
+
+
+##### Vue
+
+
+
+
+
+
+
+
+
+
+
+##### React
+
+
+ import { Scheduler, Toolbar, Item } from 'devextreme-react/scheduler';
+ // ...
+
+ function App() {
+ return (
+
+
+
+
+
+ );
+ }
-Use the [customizeDateNavigatorText](/api-reference/10%20UI%20Components/dxScheduler/1%20Configuration/customizeDateNavigatorText.md 'Documentation/ApiReference/UI_Components/dxScheduler/Configuration/#customizeDateNavigatorText') function to customize the navigator's text. Refer to the function's description for an example.
+---
\ No newline at end of file