Trung Hiếu Trần
Trung Hiếu Trần

Reputation: 375

Could i use react-virtualized for rendering and modifying large tabular data?

I would like to build a service that can manage large dataset by grid view. It's similar to Excel or Google's Spreadsheet. The service can render and modify directly on the grid view.

I would like to use react or some latest technology to develop the front-end. I found a react component named react-virtualized.

I still wonder that can it implement modification functionality on it.

Could you explain me more about how it work or under the hood ? Actually i need some idea to propose the solution like this.

Upvotes: 0

Views: 705

Answers (1)

bvaughn
bvaughn

Reputation: 13497

Could i use react-virtualized for rendering and modifying large tabular data?

Yes.

Sounds like you're looking to build something like this. It is built with react-virtualized and the source code for it can be found here.

Could you explain me more about how it work or under the hood ? Actually i need some idea to propose the solution like this.

This question is a bit too vague for Stack Overflow I think. You might find this talk informative since it kind of covers the basics of react-virtualized. After that I would suggest browsing the documentation.

Once you have a foundation then more specific questions could be directed here or to the react-virtualized Slack channel.

Upvotes: 2

Related Questions