2010/4/8 rads <[email protected]>: > but at this point, my fields no more included in the args list. > Which method/class analyses the natural post-request an may delete my > fields?
What are the genshi transformation your are applying to the ticket template? Are you sure the fields are being added to the right form? According to the image you sent, your have a "add new row button". Are you adding new rows with javascript? Are you adding "[1]", "[2]", "[3]", .. to the name property of each new field? eg: <input type="text" name="person[1]" value="mike"/> <input type="text" name="person[2]" value="Ann"/> <input type="text" name="person[3]" value="Vic"/> <input type="text" name="person[4]" /> <-- this should be the new row just added. Actually I don't know know Trac parses the request in this situation, when we have a "multi-value" field. Probably this field will become a list in res.args. -- Dalton Barreto -- You received this message because you are subscribed to the Google Groups "Trac Development" 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/trac-dev?hl=en.
