Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to make a stackoverflow's like tags system. I followed this tutorial (in french): http://www.formation-cakephp.com/34/autocomplete-en-ajax wich uses Prototype and Scriptaculous. Of course, I adapted it to my project

I get the following error:

this.element.setAttribute is not a function : controls.js Line 86

wich corresponds to

this.element.setAttribute('autocomplete','off');

in the control.js file

I'm really new to Ajax, so I don't have a clue on what I'm doing (wrong)...

If you need some code from any file, let me know !

view.ctp:

<div class="input">
<label>Tags :</label>
<?php e($ajax->autoComplete(
    'Tag.tag',
    '/tags/autocomplete',
    array(
        'minChars' => 3,
        'indicator' => 'ajaxloader'
    )
)); ?> 
<div id="ajaxloader" style="display:none;">
    Chargement...
</div>

Controller:

function autocomplete()
{
    $recherche = utf8_decode($this->data['Tag']['tag']);

    $tags = $this->Tag->find(
        'all',
        array(
            'fields' => 'DISTINCT tag',
            'conditions' => "tag LIKE '$recherche%'",
            'order' => 'tag',
            'limit' => 10
        )
    );

    $this->set(compact('tag', 'recherche'));
}
share|improve this question
post your code... – Jacek Kaniuk Aug 10 '11 at 22:23
Post the file (or a link to it) that contains this.element.setAttribute('autocomplete','off'); – Rudie Aug 10 '11 at 22:29
Well, controls.js is a file from the script.aculo.us package. – SQuat Aug 10 '11 at 22:33
I just got the same error, same line of code too. Did you get a solution to the problem? – Boundless Nov 30 '12 at 20:31

1 Answer

It appears that scriptaculous doesn't play well with j-query. When I removed the j-query link I stopped getting an error. This definitely isn't an ideal solution, but I thought I'd share my discovery.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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