hi,

afaik url method takes two parameters. one for the url and one for the
query string. so you can pass all your parameters in a dict.

>>> url("an/action/", dict(a=1, b=2, c=3))
'an/action/?a=1&c=3&b=2'

On Oct 6, 3:42 am, Thang Nguyen <[email protected]> wrote:
> Hi,
>
> For a small number of parameters I can pass them to a new url via
> query string such as
>
> url:'${tg.url("/new_url")}?param1=${param1}&param2=${param2}'
>
> However, what would be the correct method for passing 30 or more of
> these parameters?   For example, these parameters could be the
> selected rows (and its attributes) from a large table.
>
> thanks
>
> TPN

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

Reply via email to