react-bootstrap-table will stop develop new feature and move to react-bootstrap-table2, but keep to fix critical bugs.Feel free to let me know your idea on hereIt's a react.js table for bootstrap, named react-b
var Hello = React.createClass({ render: function() { return <ReactBootstrap.Table bordered striped hover> <thead><tr><th>name</th></tr></thead> <tbody><tr class="success"><td>Jonas</td></tr></tbody> </ReactBootstrap.Table> } }); Run Code Online (Sandbox Code Playgroud) 相关...
var options = { afterSearch: function(searchText, result){ }, afterColumnFilter: function(filterConds, result){ } } <BootstrapTable data={products} search={true} columnFilter={true} options={options} >... Bug fixes fix checkbox default toString() bug(f8ad7a2) v1.2.6 (2015-11-03) ...
/table 带边框的表格 添加 .table-bordered 类为表格和其中的每个单元格增加边框。 table class=table table-bordered ... /table 鼠标悬停 通过添加 .table-hover 类可以让 tbody 中的每一行对鼠标悬停状态作出响应。 table class=table table-hover ... /table 紧缩表格 通过添加 .table-condensed 类可以让...
Code Issues Projects Files main bin scripts src .eslintrc.json .gitignore .npmrc .npnignore .prettierrc LICENSE README.md babel.config.js bootstrapReactMobile.ts package-lock.json package.json react-bootstrap-mobile.scss tsconfig.json
/table 条纹状表格 通过 .table-striped 类可以给 tbody 之内的每一行增加斑马条纹样式。 跨浏览器兼容性 条纹状表格是依赖 :nth-child CSS 选择器实现的,而这 能不被 Internet Explorer 8 支持。 table class=table table-striped ... /table 带边框的表格 添加 .table-bordered 类为表格和其中的每个单元格...
Support to configure the td and th style object(94b4451) Use tdStyle on TableHeaderColumn to configure the td styles, aceept an object Use thStyle on TableHeaderColumn to configure the th styles, aceept an object example Enhancement Able to clean table by calling reset which is exposed ...