Skip to content

Releases: snapappointments/bootstrap-select

v1.7.5

23 Oct 17:18
Compare
Choose a tag to compare

Fix selectAll/deselectAll functionality.
Code refactoring.

v1.7.4

30 Sep 21:03
Compare
Choose a tag to compare

fix #1077
fix #1084
fix #1092
Add template option (custom caret)
fix #1111 keyboard navigation

v1.7.3

23 Jun 23:55
Compare
Choose a tag to compare

Improved IE8 support. Fixes some issues with disabling options. Adds support for native JS addEventListener('change'). Various bug fixes.

Compare this release with the previous one.

v1.7.2

27 May 20:41
Compare
Choose a tag to compare

Fixes some issues styling disabled options. Add support for UMD (CommonJS/AMD/global).

Compare this release with the previous one.

v1.7.1

22 May 01:13
Compare
Choose a tag to compare

Fix menu height calculation in Internet Explorer. IE doesn't support window.scrollY.

v1.7.0

21 May 18:10
Compare
Choose a tag to compare

Changes from v1.6.5 to v1.7.0

Bug Fixes

  • #291, #582, #781, #791, #806, #995: Performance improvements - Overhaul of code, utilizing improved caching and native JS to drastically improve performance across the board
  • #1004: fix maxOptions=1 within optgroups
  • #989: fix close button when data-header is enabled
  • #830, #961, #934, #962, #1008: fix keyboard navigation
  • #799: fix data-size="auto" when scrolled to bottom of page
  • #1014: add type="button" to buttons

New Features

  • #699: Events have been added
    • rendered.bs.select,
      refreshed.bs.select,
      changed.bs.select,
      hide.bs.select,
      hidden.bs.select,
      show.bs.select,
      shown.bs.select,
      loaded.bs.select
    • hide.bs.select, hidden.bs.select, show.bs.select, and shown.bs.select
      all have a relatedTarget property, whose value is the toggling anchor
      element.
    • changed.bs.select passes through event, clickedIndex, newValue,
      oldValue. true if selected and false if not selected.
    • loaded.bs.select fires after the select has been initialized.
  • #888, #738: Show "title" when using a non-multiple select
    • A blank option is prepended to the select, which is then selected by
      default. This allows the title to be shown when the select is initially
      loaded and "no" options are selected yet.

Compare v1.7.0 with v1.6.5.

v1.7.0 RC6

21 May 17:22
Compare
Choose a tag to compare
v1.7.0 RC6 Pre-release
Pre-release

Add loaded.bs.select event, which fires after the select has been generated. Close
#1026. Close #699.

Some IE8 bug fixes.

Compare this release with the previous one.

v1.7.0 RC5

20 May 04:44
Compare
Choose a tag to compare

v1.7.0 RC4

14 May 06:25
Compare
Choose a tag to compare
v1.7.0 RC4 Pre-release
Pre-release
v1.7.0-rc4

grunt dist

v1.7.0 RC3

08 May 23:09
Compare
Choose a tag to compare
v1.7.0 RC3 Pre-release
Pre-release
Wrong option highlighted on single select w/ title

liObj was not correct if a select had a title. The originalIndex of the
first <li> element is 1, since a new option is inserted into the select
when a title is set. The newIndex of the first element is 0. liIndex
must be decreased when the new option is created.