All Versions
138
Latest Version
Avg Release Cycle
9 days
Latest Release
2755 days ago
Changelog History
Page 12
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
onselectRow
propsjs var selectRowProp = { mode: "checkbox", showOnlySelected: true };
- add
โจ Enhancement
- ๐ Improve long table performance(564379a)
-
v1.4.1 Changes
January 10, 2016 -
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 -
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 -
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)
- Check this thread
Available to drop row by API(88062b7)
- Check this thread
Available to filter by column through API
- Check this thread
-
v1.2.15 Changes
December 01, 2015 -
v1.2.14 Changes
November 27, 2015๐ Bug fixes
- ๐ Fix the NaN value in style(8a6b9b0)