本文介绍了响应表组件的onClick事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用'react-table'组件 https://react-table.js.org
I am using the 'react-table' component https://react-table.js.org
我想为一列添加点击事件(稍后我会根据此事件打开显示信息的模式)。
I want to add on click event for one column (later I will open a modal showing info based on this event).
推荐答案
你将getTrProps添加到ReactTable,例如:
You add getTrProps to ReactTable like the example:
const onRowClick = (state, rowInfo, column, instance) => {
return {
onClick: e => {
console.log('A Td Element was clicked!')
console.log('it produced this event:', e)
console.log('It was in this column:', column)
console.log('It was in this row:', rowInfo)
console.log('It was in this table instance:', instance)
}
}
}
<ReactTable data={[]} columns={[]} getTrProps={onRowClick} />
这篇关于响应表组件的onClick事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!