Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

additional field blanks on modify

Quote Reply
additional field blanks on modify
hi,

i've added a Review field to table:links and table:validate, to allow me to write a review on the sites - it all works fine, except when people modify their link - then the Review field blanks, and the data is lost ? the Review field is obviously not included on the modify-template. I cannot figure out what to do about it, but suspect that it has to do with the code some fields has in Validate !! can anybody help ?

regards dane

Quote Reply
Re: additional field blanks on modify In reply to
Does the modify form have the correct field name, if so is it declared in the script?

All the best
Shaun

Quote Reply
Re: additional field blanks on modify In reply to
The Review filed is not in the modify template, because I do not want people to be able to edit it. It should only show up in the admin validate section.

Dane

Quote Reply
Re: additional field blanks on modify In reply to
You need to include hidden fields in all your modify template files....

Code:

<input type="hidden" name="Review" value="<%Review%>">


Regards,

Eliot Lee

Quote Reply
Re: additional field blanks on modify In reply to
Eliot, you save me again. Thank you !

Dane