Releases: gvas/knockout-jqueryui
Releases · gvas/knockout-jqueryui
v2.2.3
v2.2.2
v2.2.1
v2.2.0
- 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 standardvalue
binding. (#40, #41)
Thanks for @bernesto for reporting the selectmenu binding's shortcomings.
v2.1.0
- Added the
messages
option to theautocomplete
binding.
Thanks @a-sassermann for the implementation!
v2.0.1
- 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
- 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!