@foreach (var p in Model.Pages)
{
foreach (var s in p.Fieldsets)
{
foreach (var c in s.Containers)
{
foreach (var a in c.Fields)
{
if (a.Alias == "longitude")
{
<input type="hidden" id="@a.Alias" name="@a.Alias" value="@a.ValueAsHtmlString">
}
}
}
}
}
Read value entered on previous step
Hi,
How can i read the entered values from the previous step in multi step form setup.
I can get all values with data from Model.AllFieldsAsJson()
But isnt is possible to get a specific value, that were entered in the previous step?
is working on a reply...