From 3f14fe058f6201c37afec99541af562a5733bbe0 Mon Sep 17 00:00:00 2001 From: jpdriver Date: Thu, 17 Mar 2016 18:26:32 +0000 Subject: [PATCH 1/2] fire shouldComponentUpdate if non-selected cell values change --- src/Cell.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Cell.js b/src/Cell.js index 3fd17ffd55..08c49b5a3f 100644 --- a/src/Cell.js +++ b/src/Cell.js @@ -71,7 +71,8 @@ const Cell = React.createClass({ || this.isDraggedCellChanging(nextProps) || this.isCopyCellChanging(nextProps) || this.props.isRowSelected !== nextProps.isRowSelected - || this.isSelected(); + || this.isSelected() + || this.props.value !== nextProps.value; }, onCellClick() { From e4c5eda9f6e9ac503dc9e42b658c58af000ae7c8 Mon Sep 17 00:00:00 2001 From: jpdriver Date: Thu, 17 Mar 2016 18:27:05 +0000 Subject: [PATCH 2/2] update version number --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7e8518ba8e..f1154db86a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-data-grid", - "version": "0.13.34", + "version": "0.13.35", "description": "Data grid for React", "main": "src/index.js", "scripts": {