Funny I was just looking at this myself. Noticed the same problems
you found.
Thanks for the updated / fixed version will try it out and let you
know if I have any problems.
Thanks!
Chris Olsen
On Feb 13, 1:07 am, "GHUM" <[EMAIL PROTECTED]> wrote:
> some time ago I detected the Mochi-ized Autocompleter within
> MochiKit.svn.
>
> I learned from the mailinglist that it was there by accident...
>
> As I needed an Autocompleter, I scratched my itch and made it work.
>
> The main changes where:
>
> 1) MochiKit.Position.clone(element, update, {setHeight: false,
>
> MochiKit.Position. at least in the actual MochiKit Version does not
> care about "setHeight" in Options. So I rewrote that Position Cloning
> by hand within Controls.
>
> 2) //MochiKit.Signal.connect(this.element, 'onkeypress', this,
> this.onKeyPress, this);
> MochiKit.Signal.connect(this.element, 'onkeydown', this,
> this.onKeyPress, this);
>
> "onkeypress" does not provide eventes for "Return" and "Tab" and
> "Cursor down / up..."; i changed the connect
>
> 3) within onKeyPress I had to fix some MochiKit.Event.stop() to
> event.stop(), and also had to update some of the Names of Keys
>
> 4) Within the scriptaculous-baseversion there was Autocompleter.Base,
> Autocompleter.Local and Ajax.Autocompleter. I harmonized that to have
> Autocompleter.Ajax instead of Ajax.Autocompleter
>
> a .diff against svn is available on request; and the changed controls
> for people googling it is here:
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"MochiKit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/mochikit?hl=en
-~----------~----~----~----~------~----~------~--~---