-
-
Notifications
You must be signed in to change notification settings - Fork 279
Open
Description
Add this code in PivotTableUI.js
'p',
{
key: x,
onClick: function onClick() {
return _this2.toggleValue(x);
},
className: x in _this2.props.valueFilter ? '' : 'selected'
},
After this line add the below code for check boxes
// ✅ Checkbox added here
_react2.default.createElement('input', {
type: 'checkbox',
checked: !(x in _this2.props.valueFilter),
onChange: function onChange(e) {
e.stopPropagation(); // prevent p click
return _this2.toggleValue(x);
}
}),
Metadata
Metadata
Assignees
Labels
No labels