简体   繁体   中英

Add tooltips on column headers in a React Bootstrap table

<BootstrapTable
bordered={false}
hover={true}
wrapperClasses="responsive"
keyField="id"
data={products}
columns={columns} 
{...props.baseProps}
//  ref={(n) => (this.node = n)}
pagination={paginationFactory(optionsPag)} />

I want to add the tooltip inside this table. How can I do?

You can do this with provided components Overlay, OverlayTrigger and Tooltip: https://react-bootstrap.netlify.app/components/overlays/

I have created a sandbox with a single table and two tooltips using OverlayTrigger - the first is triggered on hover, the second on click:https://codesandbox.io/s/react-bootstrap-template-forked-29by4e

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM