jerry wrote:
> Hi Mike,
> 
> Thanks for the response.
> 
> I mentioned MultiDict as a convenient term to convey the idea in my
> question, not that I know or thought it would help with the
> implementation.
> 
> As for the demand, I have a form with a list of checkbox input items
> for viewing the details of selected one(s). The receiving controller
> will naturally have multi-parameter URL like /details?q=1&q=2 . Now I
> want to further enable adding more items in the details viewing list
> and need to have another form with probably hidden input items q=1 and
> q=2, finally when paging is involved for this form, the pager links
> will have to inherit the information of the existing parameters
> q=1&q=2, hence the demand.

I'm not 100% clear on what you want to do, but probably {'q': ['1', 
'2']} will get this for you.  You can get a dictionary like this from a 
MultiDict with req.POST.mixed().


-- 
Ian Bicking : [EMAIL PROTECTED] : http://blog.ianbicking.org

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to