You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7-6
Original file line number
Diff line number
Diff line change
@@ -21,11 +21,11 @@
21
21
* Available to drop row by API([88062b7](https://github.com/AllenFang/react-bootstrap-table/commit/88062b7b04dbed76b76ef8f0045f38ab1ebb256e))
22
22
* Check this [thread](https://github.com/AllenFang/react-bootstrap-table/issues/168)
23
23
* Available to filter by column through API</br>
24
-
```
24
+
```javascript
25
25
export default class FilterTable extends React.Component{
26
-
// handle dropdown on select
26
+
/* handle dropdown on select */
27
27
handleDropDownSelect(e){
28
-
// find name eq Book and price eq 120
28
+
/* find name eq Book and price eq 120 */
29
29
this.refs.table.handleFilterData({
30
30
name: "Book",
31
31
price: 120
@@ -34,9 +34,10 @@
34
34
render(){
35
35
return (
36
36
<div>
37
-
// your dropdown...., if dropdown select then bind to handleDropDownSelect
38
-
// ...
39
-
// your table
37
+
/* your dropdown....,
38
+
if dropdown select then bind to handleDropDownSelect
0 commit comments