All Versions
138
Latest Version
Avg Release Cycle
9 days
Latest Release
3112 days ago

Changelog History
Page 11

  • v1.6.0 Changes

    March 06, 2016

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix selection checkbox sharing with the same name(207dbf2)

    ๐Ÿ”‹ Features

    • Provide searchable on <TableHeaderColumn> for enable/disable search on column(82c6b12)
    • ๐Ÿ‘Œ Support prepend new row on table(881cb13)

      • It's a expose API by BootstrapTable ```js handleBtnClick = () => { this.refs.table.handleAddRowAtBegin({ id: fake_id, name: 'product 1', ..... }); }

      render() { return ( Prepend .... ); }

    โœจ Enhancement

    • Clear timer on number and text filter when component unmount(c71f508)
    • ๐Ÿ‘‰ Make sort field be passed as fourth argument when customize sort function(011a8d7)
      • Check following code js function numberSortFunc(a, b, order, sortField){ //we add sortField in this patch //.... } //... ReactDOM.render( <BootstrapTable data={products}> <TableHeaderColumn dataField='id' isKey={true} dataSort={true} sortFunc={numberSortFunc}>Product ID</TableHeaderColumn> <TableHeaderColumn dataField='name'>Product Name</TableHeaderColumn> <TableHeaderColumn dataField='price' dataSort={true} sortFunc={numberSortFunc}>Product Price</TableHeaderColumn> </BootstrapTable> );
  • v1.5.4 Changes

    February 27, 2016

    ๐Ÿ› Bug fixes

    โœจ Enhancement

    ๐Ÿ”‹ Features

    • ๐Ÿ‘Œ Support mouse event on table and row(47bce92)
  • v1.5.3 Changes

    February 23, 2016

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix #289 which happened after v1.5.2(ecf744c)
    • ๐Ÿ›  Fix column-filter broken when using default value and pagination(add9ff6)
    • ๐Ÿ›  Fix origin column filter broken after v1.5.1(b2625c0)
    • ๐Ÿ›  Fix the screen is still dimmed after insert row(8582ca4)

    โœจ Enhancement

    • ๐Ÿ’… Move inline style for display no data text to css file(8d8553b)
  • v1.5.2 Changes

    February 21, 2016

    ๐Ÿ› Bug fixes

    • #276(4578e3d)
    • #279๏ผšFix data should be filtered out after editing(760ef80)
    • ๐Ÿ›  Fix search work on hidden column(1f3798b)
    • #283๏ผšFix rare a bug when enable column-filter and keyField(125e975)

    โœจ Enhancement

  • v1.5.1 Changes

    February 17, 2016

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix On state change: Uncaught TypeError: Cannot read property 'props' of null(38a8bd9)

    ๐Ÿ”‹ Features

    • ๐Ÿ†• New filtering behavior + default filter definition(68416ef)
      • Check this PR
      • See more examples on example folder

    โœจ Enhancement

    • โž• Add className on delete and insert button(3baedef)
    • โž• Add className on no data <th>, can Customize of the "no data to display" cell(79dd442)
  • v1.5.0 Changes

    February 05, 2016

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix variable reference issue for default selected(13f736c)

    ๐Ÿ”‹ Features

    • ๐Ÿ‘Œ Support column formatting with extra data(9de2e9e)
      • Check this examples
    • ๐Ÿ”„ Change the pagination behavior(74c1fc7)
      • Check this PR for more detail

    โœจ Enhancement

    • ๐Ÿ‘‰ Show sorting caret on header if sort enabled(55ac719)
  • v1.4.6 Changes

    January 30, 2016

    ๐Ÿ”‹ Features

    • ๐Ÿ‘Œ Support column format with extra data(a4e4565)
      • Add formatExtraData in TableHeaderColumn. Check the example in examples/js/column-format/extra-data-column-format-table.js
    • โž• Add Clear button for cleaning search input field(8d41dc5)
      • add clearSearch on options props js var options = { clearSearch: true }; //... ReactDOM.render( <BootstrapTable data={collection} options={options}>... );

    โœจ Enhancement

    • Available to clean all selection state By API(f5978f9)
  • v1.4.5 Changes

    January 25, 2016

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix pagination lost(6fe1812) check example in examples/js/selection/externally-managed-selection.js
    • ๐Ÿ›  Fix #213(c004c90)

    ๐Ÿ”‹ Features

    • โž• Add class on select all checkbox(b955d92)

    โœจ Enhancement

    • ๐Ÿ‘Œ Support source map(d0d78ef)
    • Sorting data provided in data in-place rather than using a copy or some other heuristic(3157dbe)
  • v1.4.4 Changes

    January 21, 2016

    ๐Ÿ› Bug fixes

    • Sorting not re-rendering data when dataFormat is being used(7810fa3)
    • Table should be sortable when a column is hidden programmatically(1c403b1)
  • v1.4.3 Changes

    January 20, 2016

    ๐Ÿ› Bug fixes

    • Row end with a superfluous comma when export csv(078d91d)
    • Apply a dataFormat column will breaks when hiding(6878e90)
    • 0๏ธโƒฃ Setting default sort and then sorting first time always sort descending(ab43542)