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
Hello,
Is there are any way to access a contour Form Entry using record id using Razor
Contour.Addons.DynamicObjects.dll.
In the API I can see, GetRecord(string id) but not able to get that in the Razor Addon Library, please let me know,
-Rajeev
How about this (in Contour 3):
var recordId = Request["recordid"]; RecordStorage storage = new RecordStorage(); Umbraco.Forms.Core.Record record = storage.GetRecord(new Guid(recordId));if (record == null){ return;} foreach (var r in record.RecordFields) { @r.Value.Field.Caption @r.Value.ValuesAsString()}
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Accessing a record through id
Hello,
Is there are any way to access a contour Form Entry using record id using Razor
Contour.Addons.DynamicObjects.dll.
In the API I can see, GetRecord(string id) but not able to get that in the Razor Addon Library, please let me know,
-Rajeev
How about this (in Contour 3):
is working on a reply...