Re: Re: AutoCompleteTextField and wicket 1.3.5

2008-11-11 Thread rzsolt
I have the same problem using IE6. I get an 'Error on page' message when I press the first key in my AutoCompleteTextField type field. The complete IE6 error massage as: Line: 288 Char: 9 Error: Type mismatch Inspecting the recent changes in wicket-autocomplete.js (1.3.4 - 1.3.5), I found that

Re: Re: AutoCompleteTextField and wicket 1.3.5

2008-11-11 Thread rzsolt
There is another typo in AutoCompleteTextField.java. Line 257 should be like this: tag.put(autocomplete, off); instead of this tag.put(autocomplete, false); A temporary workaround: myActf.add(new SimpleAttributeModifier(autocomplete, off)); -- View this message in

Tree redrawing

2008-04-15 Thread rzsolt
It seems that wicket Tree items always redraw themself when I drag the mouse over them. Why? I have a page with two panels on it: a menu tree on the left and a form panel on the right. Actually the right side form is submitted by an ajax request and with the help of the LasyLoadingPanel because