Skip to content

Releases: gvas/knockout-jqueryui

v2.2.3

10 Oct 11:32
Compare
Choose a tag to compare
  • spinner: now the value is always updated immediately ignoring the valueUpdate option.

v2.2.2

20 Jan 16:35
Compare
Choose a tag to compare
  • Added bower support

v2.2.1

23 Dec 18:09
Compare
Choose a tag to compare
  • Bugfix: selectmenu didn't update the selected option when the value binding changed. The bug occured only with knockout<3.0

v2.2.0

23 Dec 18:07
Compare
Choose a tag to compare
  • The bindings can be applied to the same element as knockout's standard foreach, if, ifnot, with, html, text, options bindings, without throwing the 'Multiple bindings (... and ...) are trying to control descendant bindings of the same element.' exception.
  • Added synchronization between the selectmenu- and knockout's standard value binding. (#40, #41)

Thanks for @bernesto for reporting the selectmenu binding's shortcomings.

v2.1.0

13 Aug 13:13
Compare
Choose a tag to compare
  • Added the messages option to the autocomplete binding.

Thanks @a-sassermann for the implementation!

v2.0.1

10 Jul 16:55
Compare
Choose a tag to compare
  • Refactored the sources, each of the bindings is a separate AMD module now.
  • Separate non-AMD and AMD builds.
  • The library now uses classical JavaScript inheritance, this made extending the bindings easier.
  • New binding: selectmenu
  • The datepicker binding has a new parameter: refreshOn
  • The menu binding has a new option when used with jQuery UI v1.11: items
  • The dialog binding's width and height options now support two-way data binding

Thanks @DenisPitcher and @marco-fiset for your contributions!

v1.1.0

21 May 09:56
Compare
Choose a tag to compare
  • Fixed the slider binding's animation bug (#28)
  • The slider binding's values option is two-way.
  • The slider binding has a new option named realtime. It controls when the viewmodel's value/values observables are updated. If set to true then the observables are updated during the sliding. If set to false or missing then they are updated when the sliding finishes.

The new features were implemented by @manuel-guilbault. The animation bug (and a whole lot of others) were found by @samuell. Thank you for your contributions!

v1.0.0

21 Mar 19:41
Compare
Choose a tag to compare
  • Added support for expressions in the data-bind tags.
  • The bindings export their configuration object for easier extensibility.

v0.7.1

13 Mar 11:47
Compare
Choose a tag to compare
  • Changed the version handling / the code that checks the versions of the libraries knockout-jqueryui depends on. New jQuery UI/knockout releases won't require recompilations.

v0.7.0

25 Feb 11:38
Compare
Choose a tag to compare
  • Removed the flag which was intended to prevent multiple initialization, as it didn't prevent knockout v3.0.0 to throw exceptions.
  • Added extension points to the binding handlers.