0

can you suggest me which configuration need to be set to change the "What do you want to change?" after saying no in confirmation at the end of the formflow? Thx

2
  • Please post the relevant code in the question. Commented May 8, 2017 at 15:17
  • Please provide what you tried so far Commented Dec 22, 2017 at 11:34

1 Answer 1

2

That message is part of the of the TemplateNavigation resources and a Template in the FormConfiguration class is defined with the TemplateUsage.Navigation as seen here.

The way to go is partially explained here with the only difference that you need to change the Template to look for and that you don't need to change any command of the FormConfiguration

private static IFormBuilder<T> CreateCustomForm<T>() where T : class { var form = new FormBuilder<T>(); var templateAttribute = form.Configuration.Template(TemplateUsage.Navigation); var patterns = templateAttribute.Patterns; patterns[0] = "My prompt"; templateAttribute.Patterns = patterns; return form; } 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.