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
Trying to retrieve form data after submission in Umbraco form using the link below:
https://our.umbraco.com/documentation/Add-ons/umbracoforms/developer/working-with-data/
However noticed, namespace 'DynamicObjects' doesn't exist in Umbraco Forms: 8.1.2. & Umbraco version 8.1.0
Partial Macro
@using Umbraco.Forms.Mvc.DynamicObjects
@record.Comment
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
namspace Umbraco.Forms.Mvc.DynamicObjects is missing in Umbraco Forms: 8.1.2
Hi
Trying to retrieve form data after submission in Umbraco form using the link below:
https://our.umbraco.com/documentation/Add-ons/umbracoforms/developer/working-with-data/
However noticed, namespace 'DynamicObjects' doesn't exist in Umbraco Forms: 8.1.2. & Umbraco version 8.1.0
Partial Macro
@using Umbraco.Forms.Mvc.DynamicObjects
@foreach (dynamic record in Library .GetApprovedRecordsFromPage(@CurrentPage.Id)) {-
@record.Created.ToString("dd MMMM yyy")
@if(string.IsNullOrEmpty(record.Website)){
@record.Name
}
else{
@record.Name
}
said
}
@record.Comment
is working on a reply...