Excel-like grid component built with React, with editors, keyboard navigation, copy & paste
Questions tagged [react-data-grid]
231 questions
0
votes
1 answer
react-data-grid cannot implement row grouping - possible addons issue as well
I'm using react-data-grid and I have not really managed to get the row grouping functionality to work.
I cannot get pass the toolbar configuration, but even if I comment this out (I actually don't want to show the toolbar because I want by default…

gkri
- 1,627
- 3
- 18
- 27
0
votes
1 answer
Using React-data-grid in Angular 1.x
I have ngReact installed and I am able to create a basic component (Hello World) in my Angular 1.3 project using this article: https://www.logilab.org/blogentry/7366955
But I am not sure how to use react-data-grid in my Angular app. What component…

Gil Caraff
- 3
- 1
0
votes
1 answer
How to store props passed on Click of an event in React
I recently started learning React, I have a data grid in my component, On click of a Row an event is triggered. In an event handler I could fetch the Row props (values from each column of a row clicked). So what I wanted to achieve is: I have 3…

mayuri
- 135
- 3
- 14
0
votes
1 answer
Align text within a Reaction created grid
I'm using a grid that uses React Data Grid (https://github.com/adazzle/react-data-grid) and I am having troubles since when a cell is selected its border covers the next cell's text. I have gone through the "exploratory programming" route but I…

Grelnog
- 101
- 2
- 10
-1
votes
1 answer
convert a typescript fuction to in js
function checkboxFormatter(
{ onChange, ...props }: CheckboxFormatterProps,
ref: React.RefObject
) {
function handleChange(e: React.ChangeEvent) {
onChange(e.target.checked, (e.nativeEvent as…

jokie me
- 9
- 2
-1
votes
1 answer
TypeError: Cannot read property 'setState' of undefined onGridRowsUpdated (adazzle React Data Grid )
I'm using adazzle's React-Data-Grid to display a table data of users from a REST backend service. The grid is displaying the users data correctly. When I double-click on a cell in the grid, I am able to edit and change the cell data (as have…

Ezani
- 535
- 3
- 18