Skip to content

Latest commit

 

History

History
153 lines (116 loc) · 6.71 KB

File metadata and controls

153 lines (116 loc) · 6.71 KB

v1.2.6 (2015-11-03)

Features

  • Support multi search(4874169)
    • Add multiColumnSearch={true} on <BootstrapTable>
    • In search input text, you can use space to split search text, for example: "usa france japan" to search table which contain usa or feance or japan.

Bug fixes

  • Upgrade to react-toastr@2.2.2(2459c24)

v1.2.5 (2015-10-27)

Bug fixes

  • Fix header and body unalign(3f44200)

v1.2.4 (2015-10-26)

Enhancement

  • The gap between table and pagination(c1a886b)
  • Ensure default checkbox in editor is String(0ef45d0)
  • Support keyField(2fab4d8)
    • Set keyField in <BootstrapTable> to specify which column is key.
    • Actually, this attribute is as same as the isKey in <TableHeaderColumn>. So you can choose on to assign which column is key.

Features

  • Add onPageChange hook
	function onPageChange(page, sizePerPage){
		...
	}

	var options = {
		onPageChange: onPageChange
	}

	<BootstrapTable
          data={products}
          pagination={true}
          options={options}
        >...
}
  • Add onSortChange hook
	function onSortChange(sortName, sortOrder){
		...
	}

	var options = {
		onSortChange: onSortChange
	}

	<BootstrapTable
          data={products}
          options={options}
        >...
}

v1.2.3 (2015-10-24)

Enhancement

  • Split toastr css with react-bootstrap-table css(06defe2)
    • react-bootstrap-table-all.min.css include toastr css
    • react-bootstrap-table.min.css doesn't include toastr css
  • Updat dependencies for node@4.2.1(a3a7b0c)
  • Remove deprecated .getDOMNode() calls(37b5c7e)
  • Update examples UI and add react-router(4166580)
    • use npm start or gulp example-server to watch examples on localhost:3004 Examples

v1.2.2 (2015-10-21)

Bug fixes

v1.2.1 (2015-10-19)

Bug fixes

  • Update TableDataSet missing pagination(46c93ce)
    • More discussion on #70

Features

  • Get selected Data only show in table when onSelectAll be called(9d391ee)
  function onSelectAll(isSelected, currentDisplayAndSelectedData){
     //..
}

v1.2.0 (2015-10-13)

Bug fixes

  • Remove toastr's css hard dependency(28e0b11)

Features

v1.0.3 (2015-10-10)

Bug fixes

  • Fix window is undefinde if use react-bootstrap-table in isomorphic(f5db238)

Features

  • Adding Table with borderless feature(43e484f)
    • See it on #63

v1.0.2 (2015-10-09)

Bug fixes

  • Fix wrong path of toastr

v1.0.1 (2015-10-08)

Bug fixes

  • Wrong Dependencies with react-toastr and toastr(bd16999)

v1.0.0 (2015-10-04)

Bug fixes

  • Fix key warning in PaginationList warning(9057e1c)
  • Fix default sorting bug(3eb6dbe)

Features

  • Separate classname of header and body column
    • Set className in <TableHeaderColumn> to define class on header
    • Set columnClassName on <TableHeaderColumn> to define class on body's column
  • Add cell edit validation and input type(select,checkbox,textarea)
  • Add a complete examples Demo
    • Run gulp example-server and go to localhost:3004/example-list.html
  • Give more customize features on Pagination
    • Default pagination setting

v0.9.17 (2015-09-25)

Features

  • Hide row selection column(260a1a4)