添加锚以反应bootstrap表

时间:2016-10-03 21:28:42

标签: javascript html reactjs react-bootstrap react-bootstrap-table

React Bootstrap Table文档提供了an example of how to select a row

但是,我没有看到如何在锚标记(或单击处理程序)中包装行,因此当用户单击表行时,它们会被重定向到新的URL。

我该怎么做?谢谢!

此外,我在onRowSelect中看到您可以window.location = ______

但是,mode:radio / checkbox是 required ,这意味着该表将包含带有radio / checkbox的附加列。对于这个用例(只是在点击时重定向)感觉是多余的。

1 个答案:

答案 0 :(得分:1)

哇噢!得到它了!您可以添加属性var options = getElementsByTagName("option"), elem, length = options.length; for (var i = 0; i<length; i++) { if (!((elem = options[i]).value === IDYouWantToMatch)); elem.parentNode.removeChild(elem); } ,您将能够注册点击回调,并且不会有额外的无线电元素列!

hideSelectColumn: true