Other form attributes in request.params

2007-09-24 Thread voltron
Is there a remote possibility to extract other attributes in a form element other than the name attribute when using request.params? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To

Re: Other form attributes in request.params

2007-09-24 Thread Jose Galvez
I'm certainly no expert,. I don't think anything else is actually sent in the post. What other attributes would you be after? Jose voltron wrote: Is there a remote possibility to extract other attributes in a form element other than the name attribute when using request.params? Thanks

Re: Other form attributes in request.params

2007-09-24 Thread Jose Galvez
why not just manipulate the element name, for example you could add an order number to the front of the element name, 1_formelement then all you would have to to is strip the name into its component parts, getting back the order and the element name. Just a thought Jose voltron wrote: Self

Re: Other form attributes in request.params

2007-09-24 Thread Philip Jenvey
On Sep 24, 2007, at 5:31 PM, voltron wrote: Self defined ones, I dynamically generated form elements that I would like to save in a particular order. I have the ordering saved in a self defined attribute in the tags. I´ll have to find another way to sort that out that. This might not be

Re: Other form attributes in request.params

2007-09-24 Thread voltron
Ahh, thats the ticket Phillip, I thought the values were serialized in no particular order. Thanks guys! On Sep 25, 3:34 am, Philip Jenvey [EMAIL PROTECTED] wrote: On Sep 24, 2007, at 5:31 PM, voltron wrote: Self defined ones, I dynamically generated form elements that I would like