November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Hi Marcus, thanks for your interested in Forms.
You can see in this article, there are a few special columns exist in every form definition.
http://webhelp.episerver.com/latest/addons/episerver-forms/viewing-form-submissions.htm
We will update that article.
The Finalized flag applies for all forms, but single-step-form is meaningless, I guess.
For "multi step"-forms, it's an indicator of "user abandons the form".
I have not think about the "on what step he/she abandoned it?", and Forms does not have it out of the box, but here is my opinion:
Here is explanation about other system columns
/// <summary> /// Prefix for all system columns of a form submission. /// </summary> public const string SYSTEMCOLUMN_PREFIX = "SYSTEMCOLUMN_"; /// <summary> /// Unique identifier for a submission record /// </summary> public const string SYSTEMCOLUMN_SubmissionId = SYSTEMCOLUMN_PREFIX + "SubmissionId"; /// <summary> /// Timestamp of a submission record /// </summary> public const string SYSTEMCOLUMN_SubmitTime = SYSTEMCOLUMN_PREFIX + "SubmitTime"; /// <summary> /// Username (if any) who submit this record /// </summary> public const string SYSTEMCOLUMN_SubmitUser = SYSTEMCOLUMN_PREFIX + "SubmitUser"; /// <summary> /// PageLink (or content link) of the page hosts the FormContainerBlock /// </summary> public const string SYSTEMCOLUMN_HostedPage = SYSTEMCOLUMN_PREFIX + "HostedPage"; /// <summary> /// Is the submission for this form finished? If this column contains true, that mean Visitor goes to the end of Submission Process (and click to SubmitButton) of that Form. /// </summary> public const string SYSTEMCOLUMN_FinalizedSubmission = SYSTEMCOLUMN_PREFIX + "FinalizedSubmission"; /// <summary> /// Language of the Submission. If Visitor submits the form in Svenska page (contains Svenska FormContainerBlock), this column will be "sv" /// </summary> public const string SYSTEMCOLUMN_Language = SYSTEMCOLUMN_PREFIX + "Language";
And, could you please, post Forms related question to http://world.episerver.com/forum/developer-forum/Addons/
It will get more attraction from correct team ;) and we can answer faster.
Hi Thach,
And thanks for your input. Just what I was looking for!
Yes, I've been looking around on the web for more information about EPiServer Forms and I've also looked at the help page you mentioned.
I think that the more you help texts, documentation, tutorials and so forth you provide the more developers will appreciate to develop on the EPiServer platform.
And if I have more questions regarding EPiServer Forms I will post them in the correct forum. Just forgot that it was an addon and not part of the core product :-)
//Marcus
Thank you, Marcus,
It's core functionality of a Cms, but we develop it as an add-on, to be on its own track with faster iteration because we have dedicated team for it.
You know the demand and creativity of developer is unimaginable, so we might not provide enough example and guideline for all possibility. Don't hesitate to ask question, if it's not in the documentation, we will add it.
Hi!
We've recently started using the "new" EPiServer Forms.
When you look at the forms data there's a column at the end, "Finalized" ("Slutförd" in Swedish).
Can someone explain how that column works?
Does it apply to "single step"-forms, "multi step"-forms or both?
If it applies to "multi step"-forms, would it be possible to see - if the user abandons the form - on what step he/she abandoned it?
Thanks!