In AX7
, I have a FormStringControl
and I want to clear the text-contents while the user has focus on it. I overrode the textChange()
method, and in AX2012
, this would work, but it does not in AX7
:
public void textChange()
{
this.text("");
super();
}
What I expect to happen is, while the user keys-in text, it'll clear. This is a proof-of-concept thing I'm trying to accomplish for a bigger task.
EDIT: The actual task is I have a setTimeoutEx()
(formerly setTimeout()
) that polls a string control every 100ms and attempts to clear it sometimes. It does not work when the focus is on the string control.