Hmmmm Right I havent thought of that.....so basically i just need to add a Field either of Type HiddenField or TextArea and in the Default Value something like [#propertyAlias] right?
Just have some textstrings available for the fields that change for each page, don't use them in the template, just in the backend. (we use it to send form emails to different people based on a page property containing the email adress)
In your case, you could just insert the property containing the reference code in the title & body of the email you send when a form is submitted
I need a Hidden Field since users dont need to see any of the RefNum being attributed to the node, and am using a lightbox to open the form so here is my solution.
Associating a Career Section in Contour
I was thinking of creating a career section in umbraco with contour where each job has a RefNum which the Admin will enter himself.
My question is how do i get Contour to grab the RefNum which will be stored in the Entries.
Is this possible in Contour?
//fuji
Yes it is possible, in the pdf documentation of contour it's mentioned how to prefill fields with page property values
Check out page 20 of this document: http://umbraco.com/pro-downloads/contour/ContourDeveloperDocs.pdf
Hmmmm Right I havent thought of that.....so basically i just need to add a Field either of Type HiddenField or TextArea and in the Default Value something like [#propertyAlias] right?
Just have some textstrings available for the fields that change for each page, don't use them in the template, just in the backend. (we use it to send form emails to different people based on a page property containing the email adress)
In your case, you could just insert the property containing the reference code in the title & body of the email you send when a form is submitted
Thanks for the karma :(
and no you wouldn't need a hidden field, you can just use the page value directly in the email template in your workflow
Hey Rik,
I need a Hidden Field since users dont need to see any of the RefNum being attributed to the node, and am using a lightbox to open the form so here is my solution.
<a href="nodeName.aspx?Refnum=<umbraco:Item field='filedName' runat='server' />"> ...</a>
//fuji
is working on a reply...