user3660338
user3660338

Reputation: 296

Axapta form input fields

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?

Upvotes: 1

Views: 296

Answers (1)

10p
10p

Reputation: 6793

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.

Upvotes: 5

Related Questions