Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi,
I'm new to Umbraco Contour and I'm wondering if it is possible to display submitted form entries to a webpage.
If you have any suggestions, please let me know?
Kind regards,
Bas
Hi Bas,
It's definitely possible! Check out the Developer Docs (see Documentation tab at bottom of this page) for details.
Basically Contour comes with an XSLT Extension library you can use to pull in records for a given page. Ex:
<xsl:for-each select="umbraco.contour:GetRecordsFromPage($currentPage/@id)//uformrecord">
Check the documentation for the full XML structure and other methods available.
Also, check out this video which shows how to use Contour for a "Comment" function (including listing the submitted comment records)
Hope this helps,
Tom
Comment author was deleted
And if you want to use razor, there are some dynamic objects you can use check out the Umbraco.Forms.Mvc.DynamicObjects namespace :)
Hi Tim,
Do you know how to select field names with spaces. I do have a fieldname like "Do you bring your wife/girlfriend"
Regards,
Just remove spaces and special chars
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Entered form entries displaying on a webpage
Hi,
I'm new to Umbraco Contour and I'm wondering if it is possible to display submitted form entries to a webpage.
If you have any suggestions, please let me know?
Kind regards,
Bas
Hi Bas,
It's definitely possible! Check out the Developer Docs (see Documentation tab at bottom of this page) for details.
Basically Contour comes with an XSLT Extension library you can use to pull in records for a given page. Ex:
Check the documentation for the full XML structure and other methods available.
Also, check out this video which shows how to use Contour for a "Comment" function (including listing the submitted comment records)
Hope this helps,
Tom
Comment author was deleted
And if you want to use razor, there are some dynamic objects you can use check out the Umbraco.Forms.Mvc.DynamicObjects namespace :)
Hi Tim,
Do you know how to select field names with spaces. I do have a fieldname like "Do you bring your wife/girlfriend"
Regards,
Bas
Comment author was deleted
Just remove spaces and special chars
is working on a reply...