1

Is it possible to prevent axapta from remembering entered values in a form input field so that when the user has entered one value, they do not get a highlighted proposal for what they could enter?

user3660338
  • 296
  • 5
  • 23

1 Answers1

5

Yes, it is possible.

  1. Set the AutoDeclaration property of your control to Yes.
  2. Execute element.delAutoCompleteString(NameOfYourControl); in one of your form's methods e.g. in init.
10p
  • 5,488
  • 22
  • 30