How to use the react-data-grid.RowComparer function in react-data-grid

To help you get started, we’ve selected a few react-data-grid examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github adazzle / react-data-grid / packages / react-data-grid-addons / src / draggable / DropTargetRowContainer.js View on Github external
shouldComponentUpdate(nextProps) {
    return shouldRowUpdate(nextProps, this.props);
  }
github adazzle / react-data-grid / packages / react-data-grid-addons / src / draggable / DropTargetRowContainer.js View on Github external
export default (Row) => DropTarget('Row', target, collect, {arePropsEqual: (nextProps, currentProps) => !shouldRowUpdate(nextProps, currentProps)})(rowDropTarget(Row));