We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3510fa5 commit 4e77a11Copy full SHA for 4e77a11
src/TableEditColumn.js
@@ -62,7 +62,7 @@ class TableEditColumn extends Component {
62
let valid = true;
63
if (ts.props.editable.validator) {
64
const input = ts.refs.inputRef;
65
- const checkVal = ts.props.editable.validator(value);
+ const checkVal = ts.props.editable.validator(value, this.props.row);
66
const responseType = typeof checkVal;
67
if (responseType !== 'object' && checkVal !== true) {
68
valid = false;
0 commit comments