I have a component (table) that contains many lines with data editing in them, with masks in the form of contenteditable
, it is possible to select all fields and ch
You should override shouldComponentUpdate
component life cycle method for every row of the table. Ideally for every cell in every row.
If you have a table and it gets a different props. What happens is that every nested component gets re-rendered. PureComponent
s might help but writing shouldComponentUpdate
is the only way to really control when something gets re-rendered.
Also for really large data list there is a react-virtualized. Check it out. Its pretty cool.
It would be nice if you could post source code though.