Folks,
I just made the autocomplete a Lift widget so it does not exist
anymore in JqShtml object. Here is an example on how to use it:
- For Ajax autocomplete
AutoComplete("", (current, limit) => {
println("current = " + current)
(1 to limit).map(v => "Value_" + v)
}, s => println("submit " + s))
- For pre-provided options list
AutoComplete.autocompleteObj(/*same params as bfore*/)
This may break your app but I think it is very easy to update it.
I also fixed some bugs:
1. It didn;t work if the container cookies were turned off
2. hovering on the options list did not work on Ubuntu FF3 at least
due to a capitalizated LI equality test.
If you encounter any problems, please let me know.
Br's,
Marius
On Jun 8, 12:34 pm, Kevin Wright <
kev.lee.wri...@googlemail.com>
wrote:
> +1
>
> As an evolving framework, it definitely makes more sense to favour
> consistency over backward compatibility at this stage
>