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 am working with Prototype while using the pylons framework and trying to make an Ajax call.

Here is what my html looks like:

<form method="POST" action = "javascript:void(0)" onsubmit = "new Ajax.Updater('graph','/saffron_main/click_out_display'); ">

    <label for="tids">Select Relevant Tids</label>

    <select id="tids" multiple="multiple" name="tids" title="Tids">
            <option>1</option>
            <option>2</option>
    </select>

    <p><input class = "button" type="submit" name="submit" value="submit" /></p>
</form>


<div id = "graph">

</div>

I can see that the my controller gets called and a http request gets made to /saffron_main/click_out_display. Everything looks like it is working properly. The only problem is the div never gets populated. I am pulling out my hair trying to figure this one out and any helps would be greatly appreciated! Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted

What happens if you put a return false; inside the onsubmit after you instantiate an Ajax.Updater ?

Why -
It currently would be returning true by default and the page may be getting posted back, not via Ajax

share|improve this answer
Thanks! What do you mean return false? Sorry I am new to all this. – Peter Sep 15 '11 at 2:46
I added return false and nothing changed. – Peter Sep 15 '11 at 13:16

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.