Wednesday, August 22, 2018

How to hide a form control in AX 365


Hi,

Below is the code for hiding a form control in AX. In this example I'm hiding map button.


class LogisticsPostalAddressGrid_Eventhandler
{
    /// <summary>
    ///
    /// </summary>
    /// <param name="args"></param>
    [PostHandlerFor(formStr(LogisticsPostalAddressGrid), formMethodStr(LogisticsPostalAddressGrid, init))]
    public static void LogisticsPostalAddressGrid_Post_init(XppPrePostArgs args)
    {
        FormRun             element       = Args.getThis(); //form element
        FormControl         myNewButton   = element.design(0).controlName("MapButton");

        myNewButton.visible(false);
    }

}

No comments:

Post a Comment

Why do users often get confused about Dynamics 365 Customer Engagement (D365 CE), Dataverse, and the Power Platform?

  The Microsoft ecosystem for business applications can sometimes be difficult to navigate, especially when discussing Dynamics 365 Customer...