Skip to main content

Disable autocomplete

Below is an example of how to disable the autocomplete for a specific field in AX.


public boolean modified()
{
boolean ret;
;

ret = super();

element.delAutoCompleteString(this);

return ret;
}