I am trying to get a hang of react-data-grid and the examples on their page have a "play around with it" link that takes you to jsfiddle. For some reason, I am unable to see the output on jsfiddle. What would be a solution for this?
Asked
Active
Viewed 342 times
1 Answers
1
Some of the dependencies are deprecated in the latest react version used by jsfiddle. On inspecting the resources accessed by their page and comparing it with fiddle, you can hack a solution by doing the following in jsfiddle :
- remove
react-with-addons.js
andreact-dom.js
from external resources tab. - add
react.min.js
andreact-dom.min.js
in external resources. - replace
jsfiddle-integration-babel.js
in script withthis
.
Try this fork
. It doesn't update contents in table, which is the same state as in page.

Sandeep R Venkatesh
- 307
- 2
- 14