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

Changelog History
Page 12

  • v1.4.2 Changes

    January 16, 2016

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix handleSort Function is not changing caret icon(b8ebbb3)
    • ๐Ÿ›  Fix search fails on columns in data set but not included in table(0ce3eb4)

    ๐Ÿ”‹ Features

    • ๐Ÿ‘Œ Support showing selected row only(a18a463)
      • add showOnlySelected on selectRow props js var selectRowProp = { mode: "checkbox", showOnlySelected: true };

    โœจ Enhancement

    • ๐Ÿ‘Œ Improve long table performance(564379a)
  • v1.4.1 Changes

    January 10, 2016

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix the background color of header can't spread to 100%(fa2c827)

    ๐Ÿ”‹ Features

    • ๐Ÿ‘ Allow to filter or search data which after formatting(9be42ad)
      • Apply filterFormatted={true} on <TableHeaderColumn> to enable filtering formatted data.

    โœจ Enhancement

    • Add class(table-footer-pagination) on pagination for better customization(1ab1662)
    • Add class(table-header-wrapper) on table header for better customization(fa2c827)
    • ๐Ÿ‘Œ Improve search bar too small on small screens (eg. iphone4/5)(674bf95, 351d925)
  • v1.4.0 Changes

    January 06, 2016

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix condensed table with a overlapping padding on first row(159b8f3)

    ๐Ÿ”‹ Features

    • ๐Ÿ‘Œ Support max height(91bcf2a)
      • Assign maxHeight to set a max height of table.
    • ๐Ÿ‘ Allow to customize confirmation for row deletion(eb21ec8)

      function customConfirm(next){
        if (confirm("(It's a custom confirm function)Are you sure you want to delete?")){
            //If the confirmation is true, call the function that
            //continues the deletion of the record.
            next();
        }
      }
      
      var options = {
        handleConfirmDeleteRow: customConfirm
      }
      
      <BootstrapTable
              data={products}
              deleteRow={true}
              selectRow={selectRowProp}
              options={options}>...
      

      โœจ Enhancement

    • Tuning the styling of pagination and toolbar panel(3100ee6)

    • โฌ†๏ธ Upgrade react-toastr to 2.3.0(d9e1c14)

    • โฌ†๏ธ Upgrade react to 0.14.3(9af1c24)

  • v1.3.3 Changes

    December 25, 2015

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix Uncaught TypeError: Cannot assign to read only property when edit column after search(689b60f)

    โœจ Enhancement

    • ๐Ÿ‘‰ Make the paginatation button disabled appropriately when page change to the end or begin(502cffb)
  • v1.3.2 Changes

    December 20, 2015

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix a case where current page and pagination size is lost(f01f6ec)(1d57c6d)
    • ๐Ÿ’… Pagination style tuning(9ccf5ab)

    ๐Ÿ”‹ Features

    • ๐Ÿ‘Œ Support return value from onSelect and onSelectAll handlers(bf27116)
      • If return value of this function(onSelect or onSelectAll) is false, the select or deselect action will not be applied.
    • ๐Ÿ‘Œ Support indeterminate status to select all checkbox(3d9be07)
    • ๐Ÿ‘Œ Support to change display text when data was empty(d4e16e7)

      var options = {
          noDataText: 'Your_custom_text'
      };
      
      <BootstrapTable
                      data={products}
                      options={options}
                  >...
      
  • v1.3.1 Changes

    December 12, 2015

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix column broken when resize to bigger window from smaller(d4b3f87)

    ๐Ÿ”‹ Features

    • โž• Add selection event of size per page dropdown in pagination(7fbd868)
  • v1.3.0 Changes

    December 06, 2015

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix import by RequireJS unavailable(3272c45)

    ๐Ÿ”‹ Features

    • Available to add a custom class on a selection of row(ff06fcd)

      var selectRowProp = {
        mode: "checkbox",
        className: "my-custom-select-class"
      };
      
      <BootstrapTable
                      data={products}
                      selectRow={selectRowProp}
                  >...
      
    • Available to insert row By API(a47276a)

    • Available to drop row by API(88062b7)

    • Available to filter by column through API

  • v1.2.15 Changes

    December 01, 2015

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix TableDataSet is now available via Window object(b6c065a)
    • ๐Ÿ›  Fix warning message "Cannot read property 'refs' of undefined_adjustHeaderWidth" when resizing window(fe1910a)
  • v1.2.14 Changes

    November 27, 2015

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix the NaN value in style(8a6b9b0)
  • v1.2.13 Changes

    November 25, 2015

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix sizing bugs in 1.2.11 tested in firefox(4d0f7cd)
    • ๐Ÿ›  Fix csv export bug use on server side rendering(3d46d88)
    • ๐Ÿ›  Fix #152(ee5e3f5)
    • Don't draw a dropdown if one or zero options for pagination size list(881b7cd)