What is @progress/kendo-react-popup?
@progress/kendo-react-popup is a React component library that provides a Popup component for displaying content in a popup window. It is part of the KendoReact suite of UI components and is designed to be highly customizable and easy to integrate into React applications.
What are @progress/kendo-react-popup's main functionalities?
Basic Popup
This code demonstrates a basic usage of the Popup component. It toggles the visibility of the popup when the button is clicked and anchors the popup to a specific element.
import React from 'react';
import { Popup } from '@progress/kendo-react-popup';
const BasicPopup = () => {
const [show, setShow] = React.useState(false);
return (
<div>
<button onClick={() => setShow(!show)}>Toggle Popup</button>
<Popup show={show} anchor={document.getElementById('anchor')}>Hello, World!</Popup>
<div id="anchor" style={{ marginTop: '20px' }}>Anchor Element</div>
</div>
);
};
export default BasicPopup;
Custom Popup Position
This code demonstrates how to customize the position of the Popup component. The popup is displayed at a specific position relative to the anchor element.
import React from 'react';
import { Popup } from '@progress/kendo-react-popup';
const CustomPositionPopup = () => {
const [show, setShow] = React.useState(false);
return (
<div>
<button onClick={() => setShow(!show)}>Toggle Popup</button>
<Popup show={show} anchor={document.getElementById('anchor')} position={{ top: 50, left: 100 }}>Custom Position</Popup>
<div id="anchor" style={{ marginTop: '20px' }}>Anchor Element</div>
</div>
);
};
export default CustomPositionPopup;
Popup with Animation
This code demonstrates how to add animations to the Popup component. The popup will animate when it opens and closes with specified durations.
import React from 'react';
import { Popup } from '@progress/kendo-react-popup';
const AnimatedPopup = () => {
const [show, setShow] = React.useState(false);
return (
<div>
<button onClick={() => setShow(!show)}>Toggle Popup</button>
<Popup show={show} anchor={document.getElementById('anchor')} animate={{ openDuration: 300, closeDuration: 300 }}>Animated Popup</Popup>
<div id="anchor" style={{ marginTop: '20px' }}>Anchor Element</div>
</div>
);
};
export default AnimatedPopup;
Other packages similar to @progress/kendo-react-popup
reactjs-popup
reactjs-popup is a simple and customizable popup component for React. It provides similar functionality to @progress/kendo-react-popup, including basic popups, custom positioning, and animations. However, it may not offer the same level of integration and customization options as the KendoReact suite.
react-modal
react-modal is a popular package for creating modal dialogs in React. While it is primarily focused on modals, it can be used to create popup-like components. It offers a high level of customization and accessibility features, but it may require more configuration compared to @progress/kendo-react-popup.
react-tooltip
react-tooltip is a lightweight package for creating tooltips in React. It provides functionality for displaying content in a popup-like manner, similar to @progress/kendo-react-popup. However, it is more specialized for tooltips and may not offer the same flexibility for general popup use cases.
Important
- This package is а part of KendoReact—a commercial UI library.
- You will need to install a license key when adding the package to your project. For more information, please refer to the KendoReact My License page.
- To receive a license key, you need to either purchase a license or register for a free trial. Doing so indicates that you accept the KendoReact License Agreement.
- The 30-day free trial gives you access to all the KendoReact components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the KendoReact dev team!
Start using KendoReact and speed up your development process!
The React Popup, part of KendoReact, positions a piece of content next to a specific anchor component.
Among the features which the KendoReact Popup component delivers are:
- Hidden popup—The Popup enables you to control its visibility.
- Animations—The Popup allows you to enable or disable its opening and closing animation.
- Aligning and positioning—The Popup enables you to align it to components and absolute points as well as to control its position.
- Viewport boundary detection—The Popup enables you to set its boundary detection functionality by using the collision property. This controls the behavior of the component when it does not fit in the view port.
- Theme support—The KendoReact Popup, as well as all 100+ components in the KendoReact suite, are styled in three polished themes (Bootstrap, Material, and Default) and can be further customized to match your specific design guidelines.
Support Options
For any issues you might encounter while working with the KendoReact Popup, 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.
Resources
High-level component overview pages
Copyright © 2024 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.