web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

Set Focus on Form control in Ax 2012

SANTOSH KUMAR SINGH Profile Picture SANTOSH KUMAR SINGH 1,224
To Set Focus on Form control in Ax 2012 you can take help from below code.

Args args;

FormRun _formRun;

FormControl _formControl;

;
args = new Args(formStr(CustTable));

_formRun = classFactory.formRunClass(args);

_formRun.run();

_formRun.detach();

_formControl = _formRun.design().controlName(identifierStr(Desc));

_formControl.setFocus();

This was originally posted here.

Comments

*This post is locked for comments