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 :

Invisible Factbox in Ax 2012

SANTOSH KUMAR SINGH Profile Picture SANTOSH KUMAR SINGH 1,224
To make Invisible Factbox in Ax 2012 you can write code below in particular event as per your requirement.

PartList       _partList  = new PartList(element);
FormRun     _formRun;
int                k;

for (k = 1; k <= _partList.partCount(); k++)
{
      _formRun = _partList.getPartById(k);
      _formRun.design().visible(false);
}


This was originally posted here.

Comments

*This post is locked for comments