I am trying to use react-bootstrap OverlayTrigger and Tooltip inside of a formatter for react-bootstrap-table and keep getting the following error:
OverlayTrigger\'s
I had the same problem. I can't explain why but I simply solved by adding a tag inside OverlayTrigger tag. My formatter function is inside a React Class.
My solution:
tooltipFormatter(cell, row){
return ({cell}}>{cell} );
};
Here, span tag solved the problem.
If I adapt your code, here's the solution :
submitterFormatter(submitter, row){
return ({submitter}}>{submitter} );
};
Then, when I call in dataFormat parameter of TableHeaderColumn:
TableHeader