8 Sept 2014

Activate/disactivate Dialog + AX 2012

You can use this method

public void dialogSelectCtrl()
{
;
if (dialogSelectCustGroup.value())
{
dialogCustGroup.allowEdit(true);
}
else
{
dialogCustGroup.allowEdit(false);
}
}

No comments:

Create number sequence in D365 FO

Create the data type. Add code in the loadModule method of the appropriate NumberSeqModule subclass. Add a method to the module’s paramet...