hi everyone

<table  border="0" align="center" id="product_container">
    <tbody>
     {% if qs %}
       {% autopaginate qs 5 %}
            {% for q in qs %}
<tr>
                  <td><input value="{{q.payment_value}}"
name="payment_value{{forloop.
counter}}" type="text" id="id_payment_value{{forloop.counter}}" size="20"
onchange="onChange({{forloop.counter}})"/></td>
                    <td><input value="{{q.note}}"
name="note{{forloop.counter}}" type="text" id="id_note{{forloop.counter}}"
size="20" onchange="onChange({{forloop.counter}})"/></td>
            {% endfor %}
            {% paginate %}
            {% endif %}
</tr>
     </tbody>
</table>

I'm using Django Forms to do a filtered/faceted search via POST, and I would
like to Django's paginator class to organize the results. How do I preserve
the original request when passing the client between the various pages? In
other words, it seems that I lose the POST data as soon as I pass the GET
request for another page back to my views. I've seen some recommendations to
use AJAX to refresh only the results block of the page, but I'm wondering if
there is a Django-native mechanism for doing this.

thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to