vote up 0 vote down star

Using the Ajax helper for CakePHP (currently 1.2.3.8166) to provide an $ajax->autoComplete list of results, and giving a result list back as the rendered view, if you use the mouse (and even the mouse wheel) to scroll results, all is well. Using the arrow keys, on the other hand, has the nasty effect of awkwardly scrolling the view: if I press down, the select box and the whole page move to the bottom of the browser's view pane; pressing up has the opposite effect of moving it to the top.

Has anyone else noticed this behaviour, and thought of something? the resulting list is provided by, e.g., this code (this gets $people from the autoComplete() function in the controller):

<ul>
<?php foreach($people as $person): ?>
<li><?php echo $person['Person']['id']; ?></li>
<?php endforeach; ?>
</ul>

(Just an example, I actually show the id and name / surname / commercial name).

The CSS for the list is as follows:

div.auto_complete {
    position: absolute;
    width: 250px;
    background-color: white;
    border: 1px solid #888;
    margin: 0px; padding: 0px;
}
div.auto_complete ul{
    list-style: none;
    margin: 0px;
}
flag

I think this is more of a CSS question than it is a CakePHP question. – mgroves Jul 10 at 13:36
Could be, could be. That's why I posted the CSS styles. Thanks for retagging. But the underlying code that pops up the autocomplete list is script.aculo.us as implemented by cake. – Adriano Varoli Piazza Jul 10 at 13:41
Ended up being more of a script.aculo.us question. Retagged. – Adriano Varoli Piazza Aug 3 at 17:24

2 Answers

vote up 2 vote down check

I received the answer to this problem on the cake-php newsgroup (available on http://groups.google.com/group/cake-php ). The poster pointed to this page with the solution, and I copy it here:

  1. Open the controls.js file (should be in app/webroot/js)
  2. Search for the markPrevious function and change it to:

    markPrevious: function() {
        if (this.index > 0) {
            this.index--;
        } else {
            this.index = this.entryCount-1;
            this.update.scrollTop = this.update.scrollHeight;
        }
        selection = this.getEntry(this.index);
        selection_top = selection.offsetTop;
        if (selection_top < this.update.scrollTop) {
            this.update.scrollTop = this.update.scrollTop-
            selection.offsetHeight;
        }
    },
    
  3. Search the markNext function and change it to:

    markNext: function() {
        if(this.index < this.entryCount-1) {
            this.index++;
        } else {
            this.index = 0;
            this.update.scrollTop = 0;
        }
        selection = this.getEntry(this.index);
        selection_bottom = selection.offsetTop+selection.offsetHeight;
        if(selection_bottom > this.update.scrollTop+this.update.offsetHeight) {
            this.update.scrollTop = this.update.scrollTop + selection.offsetHeight;
        }
      },
    
  4. Search for the updateChoices function and change lines

    this.stopIndicator();
    this.index = 0;
    

    to

    this.stopIndicator();
    this.update.scrollTop = 0;
    this.index = 0;
    
  5. Finally, try the behavior. If it doesn't work at first, try deleting the cache files in app/tmp/cache (or clear your favorite server-side cache), your browser cache, and try again. Clearing app/tmp/cache worked for me.

link|flag
+1 towards self learner badge – deizel Aug 2 at 12:05
Thanks! It works! Is there an official patch? – HappyCoder Nov 12 at 11:46
I haven't actually checked the new version's code, sorry. – Adriano Varoli Piazza Nov 12 at 12:39
I found a problem with this fix. If you go down in the list via keyboard, the autocomplete scrolling won't move. – HappyCoder Dec 7 at 10:54
vote up 1 vote down

Using script.aculo.us controls.js v1.8.3 it doesn't happen anymore.

link|flag
Still happens to me, sorry. I'm keeping the modified version. – Adriano Varoli Piazza Dec 7 at 13:38
You updated cache, right? Ok. Maybe we have different causes. – HappyCoder Dec 7 at 17:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.