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

Changelog History
Page 3

  • v3.4.3 Changes

    July 05, 2017

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fixed wrong colspan when table was empty and enable expandColumnOptions.expandColumnVisible(624764c)
    • ๐Ÿ›  Fix 'undefined is not an object' when running in a headless browser(a06cd6a)

    โœจ Enhancement

    • Able to disable BOM header for CSV via options.noAutoBOM(340dc8d)
    • Able to exclude header for CSV via options.excludeCSVHeader(16ba815)
  • v3.4.2 Changes

    June 24, 2017

    ๐Ÿ› Bug fixes

    • Cannot read property 'sortFunc' of undefined when conditionally rendering different tables(1418)
      • From this version, we support replace props on BootstrapTable, you can configure as true if your need to rerender a totally different table so that โšก๏ธ react-bootstrap-table will not update table state according to previous and next props.
    • Header Group broken when Row Expand Indicator is enabled(2cf11ec)

    โœจ Enhancement

    • options.onDeleteRow and options.afterDeleteRow allow to accept second argument which is the all delete rows instances(29064ff)
    • options.expandBodyClass allow to accept third argument which is a flag for is expanding or not(85eeeb5)
  • v3.4.1 Changes

    June 17, 2017

    ๐Ÿ› Bug fixes

    • If a key is 0, it's regarded as invalid in TableStore.js(e00a515)

    โœจ Enhancement

    • options.onRowClick have the second arguments: columnIndex(cf6571f)
    • ๐Ÿ”€ options.onAddRow now support to sync/async way to tell react-bootstrap-table if a error in options.onAddRow(a2a5555)
    • ๐Ÿ‘‰ Use setState as functional instead of object(b9b5b26)

    ๐Ÿ”‹ Feature

    • Able to custom the separate for exporting CSV file(1c9e2c5)
      • Using options.exportCSVSeparator
  • v3.4.0 Changes

    June 11, 2017

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fixed column width does not work when header grouping(4b1e11e)
    • ๐Ÿ›  Fixed wrong column to expand when selectRow.hideSelectColumn as ture and expand={false} on TableHeaderColumn(74e37d3)

    โœจ Enhancement

    • ๐Ÿ‘Œ Support to configure the class for expand row and body(2115389)

    ๐Ÿ”‹ Feature

    • ๐Ÿ‘Œ Support to press ENTER to expand/collapse row when keyboard navigation is enable(115495d)
      • Enable keyBoardNav.enterToExpand
      • Check example
  • v3.3.9 Changes

    June 08, 2017

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fixed TypeError: this.props.children.filter is not a function(80fb5a6)
  • v3.3.8 Changes

    June 02, 2017

    ๐Ÿ› Bug fixes

    • currSizePerPage should be string(6c6185d)

    โœจ Enhancement

    • ๐Ÿ‘ allow options.prePage, options.nextPage, options.firstPage and options.lastPage to accept any type(a2ab8fb)
  • v3.3.7 Changes

    May 22, 2017

    โœจ Enhancement

    • ๐Ÿ‘ Allow conditionally specify columns(9b748df)
    • #1319(338424f)
    • ๐Ÿ‘ Allow date filter to filter string value, react-bootstrap-table will convert string to Date(63a022a)
  • v3.3.6 Changes

    May 19, 2017

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fixed ExpandComponent.js:47 Uncaught TypeError: Cannot read property 'className' of undefined(5618342)
  • v3.3.5 Changes

    May 17, 2017

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix editable.type will be ignore if is not textarea, select, checkbox, and datetime(e3f87e0)

    โœจ Enhancement

    • 0๏ธโƒฃ Able to set the default value for field in insert model easily(5bd62b4)
      • Use editable.defaultValue
    • ๐Ÿ‘Œ Support options.onExpand and accept a function which will be called when expand/collapse happen(f54ebc3)
    • ๐Ÿ‘ Allow selectRow.className to accept a function for a easy customization reason(440d376)
    • ๐Ÿ’… Able to apply custom style on filter(1e8f1f9)
  • v3.3.4 Changes

    May 13, 2017

    ๐Ÿ› Bug fiexs

    • ๐Ÿ›  Fix afterSearch and afterColumnFilter doesn't be called when table rerender(24e5b66)

    โœจ Enhancement

    • Able to clean sorted table(261c6ea)

      • Please check this example
    • ๐Ÿ”ง Able to configure the text and value of select option in cell editing or insert modal(face547)

      • Please check this example
      • It's only for the case of editable.type is select
      • Releated issues: #1031 and #243