Is there anyway, when being prompted for a value in a FormFlow dialog, of allowing the user to simply hit 'Enter' to accept the default value for a field?
For example I have a field defined as
[Prompt("Appointments Starting At? {||}")]
[Template(TemplateUsage.Unspecified, "today")]
[Template(TemplateUsage.NoPreference, "today")]
[Optional]
public string StartDate;
When the user gets to this step they are prompted as expected
Appointments Starting At? (current choice: today)
What I would like is for the user to simply hit 'Enter' to accept the default value. Is this possible, and if so how?
Thanks in advance