Important
- This package is а part of KendoReact—an enterprise-grade UI library with 120+ free and premium components.
- This package contains free KendoReact components. You can use it even in production, no sign-up or license required. If you're looking for more free React components, check out Get Started with KendoReact Free.
- Installing and working with this package indicates that you accept the KendoReact License Agreement.
- The 30-day free trial gives you access to all KendoReact components and their full functionality. Additionally, for the period of your trial, you can use our legendary technical support provided directly by the KendoReact dev team!
The React Dialogs, part of KendoReact, are UI components for prompting user interaction. They provide modal and non-modal windows for showing additional information to the user, filling a form and many others.
How to start:
npm install --save @progress/kendo-react-dialogs @progress/kendo-licensing @progress/kendo-react-buttons @progress/kendo-react-common @progress/kendo-svg-icons
What's in this package:
Additional resources:
Among the many features which the KendoReact Dialogs deliver are:
- Modal—The dialogs can be shown as modal on the page to prevent the user from interacting with other elements on the page.
- Resizing—You can resize the window to change its dimensions to better view a large content.
- Dragging—The window can be dragged across the page, to position it at a specific part of the page.
- Keyboard navigation—The Dialogs can be controlled by the keyboard.
- Title and content—You have full control over what is rendered in the dialogs title and content.
- Theme support—The KendoReact Dialogs, as well as all 120+ components in the KendoReact suite, are styled in three polished themes (Bootstrap, Material, Fluent, and Default) and can be further customized to match your specific design guidelines.
This is a free React component—no sign-up or license required.
The KendoReact Dialog component is part of KendoReact and presents a modal window with content and prompts the user to take specific actions by interacting with built-in buttons for different actions. The React Dialog has the flexibility to define custom actions and buttons at the bottom of the component, referred to as the Dialog Action Buttons. By default, the KendoReact Dialog has some internal calculations for height and width, but these can easily be overridden by using the width and height bindings of the Dialog component.
How to use the Dialog component in your apps:
import { Dialog, DialogActionsBar } from '@progress/kendo-react-dialogs';
import { Button } from '@progress/kendo-react-buttons'; // You can import any other component that allows user interaction within the DialogActionsBar. You may need to install additional dependencies, if you're not using components from the Buttons package.
...
/**
* Handle the logic for opening and closing the dialog.
* Handle the logic for the user actions within the dialog.
*/
<Dialog title={'Title'} onClose={closeDialog}>
/**
* Show additional dialog content, such as images and text.
*/
<DialogActionsBar>
/**
* Provide user action buttons.
*/
</DialogActionsBar>
</Dialog>
This is a free React component—no sign-up or license required.
The KendoReact Window component displays content in a non-modal fashion and allows for the window to be moved throughout the page as well as resized based on user requirements.Each React Window has built-in action items for minimizing, maximizing and closing the window. By default, the React Window is in an uncontrolled state and can be resized or moved depending on its internal logic. For scenarios that require a controlled component, every aspect of the window can be maintained by controlling the state of the component.
How to use the Window component in your apps:
import { Window, WindowActionsBar } from '@progress/kendo-react-dialogs';
import { Button } from '@progress/kendo-react-buttons'; // You can import any other component that allows user interaction within the WindowActionsBar. You may need to install additional dependencies, if you're not using components from the Buttons package.
...
/**
* Handle the logic for opening and closing the window.
* Handle the logic for the user actions within the window.
*/
<Window title={'Title'}>
/**
* Show additional window content, such as images and text.
*/
<WindowActionsBar>
/**
* Provide user action buttons.
*/
</WindowActionsBar>
</Window>
For any issues you might encounter while working with the KendoReact Dialogs, use any of the available support channels:
- Industry-leading technical support—KendoReact paid license holders and users with an active (free) trial license can take advantage of our outstanding customer support. To submit a ticket, use the dedicated KendoReact support system.
- Product forums—The KendoReact forums are part of the free support you can get from the community and from the KendoReact team.
- Feedback portal—The KendoReact feedback portal is where you can request and vote for new features to be added.
- Getting Started with KendoReact
- Get Started with KendoReact Free
- Getting Started with the KendoReact Dialogs
- API Reference of the KendoReact Dialogs
- KendoReact Roadmap
- Blogs
- Demos, documentation, and component reference
- KendoReact pricing and licensing
- Changelog
High-level component overview pages:
Copyright © 2025 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.
Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries.