Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
6.14.0
-
None
Description
Since wicket 6.14, autocomplete component throw an error when positionning autocomplete-menu.
TypeError: $(...).offset is not a function
In fact, in wicket-autocomplete.js (line 592), getPosition use $(obj) instead of Wicket.$(obj) :
For apps with other js lib, it's really critique because a JS error freeze other js action.
Quick fix is to change :
line 592 of wicket-autocomplete.js
--> Wicket.$(obj) instead of $(obj)
Thanks