回答編集履歴

1

追記

2017/01/06 06:57

投稿

退会済みユーザー
test CHANGED
@@ -8,9 +8,23 @@
8
8
 
9
9
  クリック時にイベント処理(this.handleClick)を行えています。
10
10
 
11
+ また、コンストラクターへ以下の記述でメソッドのbindも必要でした・・。
12
+
13
+
14
+
11
15
 
12
16
 
13
17
  ```javascript
18
+
19
+ constructor(props) {
20
+
21
+ ...
22
+
23
+ this.handleClick = this.handleClick.bind(this)
24
+
25
+ }
26
+
27
+
14
28
 
15
29
  // onRowSelectionでの対応
16
30