Skip to content

Commit 1af105a

Browse files
committed
fix conflicts
2 parents b21ec6c + fb96816 commit 1af105a

30 files changed

+1681
-840
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
<a name="v2.8.0"></a>
2+
# [v2.8.0](https://github.com/AllenFang/react-bootstrap-table/compare/v2.7.1...v2.8.0) (2016-12-25)
3+
## Features
4+
* Support colSpan and rowSpan on table header([8e459ef](https://github.com/AllenFang/react-bootstrap-table/commit/8e459efde34ceca5b45f208524231b60fc81aedc))
5+
6+
<a name="v2.7.1"></a>
7+
# [v2.7.1](https://github.com/AllenFang/react-bootstrap-table/compare/v2.7.0...v2.7.1) (2016-12-18)
8+
## Bug fixes
9+
* Fix layout error when expand row with a hidden column outside([460ba53](https://github.com/AllenFang/react-bootstrap-table/commit/460ba535fa12b4bfda54b034c044c52ebcd8543e))
10+
11+
## Enhancement
12+
* Support ```editColumnClassName``` prop on ```<TableHeaderColumn>``` for separate from ```columnClassName```([dbc40d3](https://github.com/AllenFang/react-bootstrap-table/commit/dbc40d3acad89e805dbccdb29d261af4b8f6ab39))
13+
* check [#892](https://github.com/AllenFang/react-bootstrap-table/issues/892)
14+
* Support ```headerText``` prop on ```<TableHeaderColumn>```([9183e71](https://github.com/AllenFang/react-bootstrap-table/commit/9183e7127d584818a59b6cd8833c0b787a0cf61d))
15+
* It's optional but if you dont have a pure text as children in ```<TableHeaderColumn>```, you can configure this prop to avoid couple wanring when insert or filter.
16+
* The value of this prop will be used on the placeholder or tip for filter or insert modal field.
17+
18+
## Features
19+
* Allow to expand row by specified column or a row([95fbfd4](https://github.com/AllenFang/react-bootstrap-table/commit/95fbfd4edf3287d94282919fb3e7b0a7e2455390))
20+
* Check [this](https://github.com/AllenFang/react-bootstrap-table/blob/master/examples/js/expandRow/expand-row-by-column.js) example
21+
* Give ```expandBy``` in ```options``` props and assign as ```column``` or ```row```(```row``` is default)
22+
* If you give ```expandBy``` as ```column```, all column can trigger expanding by click
23+
* You can tell ```react-bootstrap-table``` which column can trigger expanding by ```expandable={ false }``` on ```<TableHeaderColumn>```
24+
25+
<a name="v2.7.0"></a>
26+
# [v2.7.0](https://github.com/AllenFang/react-bootstrap-table/compare/v2.6.0...v2.7.0) (2016-12-13)
27+
## Bug fixes
28+
* Fixed calling ```handleSearch('')``` will no clear the text on search field([f7646dc](https://github.com/AllenFang/react-bootstrap-table/commit/f7646dcd9c5c2122c9447c9f20ac0d13d8c6761d))
29+
* Fixed ```getComputedStyle``` is not defined error([c9587b2](https://github.com/AllenFang/react-bootstrap-table/commit/c9587b25c06998eb443970b89302bac147840fd1))
30+
* Fixed fails in restricted network environment for ```react-toastr``` with a git url installation
31+
32+
## Features
33+
* Support ```scrollTop``` prop on ```<BootstrapTable>```([20a0d65](https://github.com/AllenFang/react-bootstrap-table/commit/20a0d657624b88f7105482a1d0d3ca7e7d715ec2))
34+
* Available valus is a numeric value or ```Top``` or ```Bottom```
35+
136
<a name="v2.6.0"></a>
237
# [v2.6.0](https://github.com/AllenFang/react-bootstrap-table/compare/v2.5.9...v2.6.0) (2016-11-28)
338
## Bug fixes

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,34 @@
77
[![Dependency Status][deps-badge]][deps]
88
[![devDependency Status][dev-deps-badge]][dev-deps]
99
[![peerDependency Status][peer-deps-badge]][peer-deps]
10-
It's a [react.js](http://facebook.github.io/react/) table for bootstrap, named reactbsTable. It's a configurable, functional table component and make you build a Bootstrap Table more efficiency and easy in your React application, However ```react-bootstrap-table``` support these features:
10+
It's a [react.js](http://facebook.github.io/react/) table for bootstrap, named react-bootstrap-table. It's a configurable, functional table component and make you build a Bootstrap Table more efficiency and easy in your React application, However ```react-bootstrap-table``` support these features:
1111

1212
- striped, borderless, condensed table
13-
- column align, hidden, width, sort
13+
- column align, hidden, width, sort, title
1414
- scrolling table
1515
- cell format
1616
- pagination
1717
- row selection
1818
- column filter with multi type
1919
- cell edit with multi type editor
2020
- insert & delete Row
21-
- row and column style customization
21+
- table, row and column styling
2222
- global search
23-
- export to CSV file
23+
- export to CSV
2424
- rich function hooks
2525
- large columns table
26+
- header colum span
27+
- remote mode
28+
- expandable row
2629

30+
![Example](http://i.imgur.com/Ov1wMse.png)
2731
Explore more example on [examples](https://github.com/AllenFang/react-bootstrap-table/tree/master/examples/js) folder</br>
2832
See more about [react-bootstrap-table](http://allenfang.github.io/react-bootstrap-table/index.html).</br>
2933
Check [this](http://allenfang.github.io/react-bootstrap-table/advance.html) for more advance usage for ```react-bootstrap-table```. Feel free to ask more examples.</br>
3034
Check the <a href='https://github.com/AllenFang/react-bootstrap-table/blob/master/CHANGELOG.md'>CHANGELOG</a> for more detail release notes.
3135

3236
## Notes
33-
***```v3.0.0-beta.2``` released, check [release page](https://github.com/AllenFang/react-bootstrap-table/releases). [There](https://github.com/AllenFang/react-bootstrap-table/tree/v3.0.0-dev/examples/js/custom) are a lots of example for customization component, you can also check the [online](http://allenfang.github.io/react-bootstrap-table/example.html#custom) version<br/>***
37+
***```v3.0.0-beta.5``` released, check [release page](https://github.com/AllenFang/react-bootstrap-table/releases). [There](https://github.com/AllenFang/react-bootstrap-table/tree/v3.0.0-dev/examples/js/custom) are a lots of example for customization component, you can also check the [online](http://allenfang.github.io/react-bootstrap-table/example.html#custom) version<br/>***
3438

3539
***```v3.0.0``` is under planning, check [Milestone to v3.0.0](https://github.com/AllenFang/react-bootstrap-table/issues/497).<br/>***
3640

0 commit comments

Comments
 (0)