Wicket-autocomplete.js should call wicketHide and wicketShow
------------------------------------------------------------
Key: WICKET-2062
URL: https://issues.apache.org/jira/browse/WICKET-2062
Project: Wicket
Issue Type: Bug
Components: wicket-extensions
Affects Versions: 1.3.5
Reporter: Stefan
wicket-autocomplete.js functions showIndicator() and hideIndicator should call
wicketHide(..) and wicketShow(..) functions instead of method below.
function showIndicator() {
if (indicatorId!=null) {
Wicket.$(indicatorId).style.display=''; }
}
function hideIndicator() {
if (indicatorId!=null) {
Wicket.$(indicatorId).style.display='none';
}
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.