Loading...

Form Control Event Handler Methods in Dynamics 365

Form Control Event Handler Methods in Dynamics 365

 For example, In Dynamics 365 for Operations you can react to the OnClicked event by copying the event handler method for the event and pasting the method into a class. 


Below is an example of an event handler method that reacts to the OnClicked event of a button on a form.



Create new Class and paste below code in it for SalesEditLines EventHandlers

 /// <summary>
    ///
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    [FormControlEventHandler(formControlStr(SalesEditLines, OK), FormControlEventType::Clicked)]
    public static void OK_OnClicked(FormControl sender, FormControlEventArgs e)
    {
        Args args = new Args();
        FormCommandButtonControl  callerButton = sender as FormCommandButtonControl;  //Retrieves the button that we're reacting to
        FormRun form = callerButton.formRun(); //Gets the running SalesEditLines form

        //Get the salesId that was selected in the SalesEditLines form
        FormDataSource salesParmTable_ds = form.dataSource(formDataSourceStr(SalesEditLines, SalesParmTable)) as FormDataSource;
        SalesParmTable salesParmTable = salesParmTable_ds.cursor();


        SalesTable salesTable=salesParmTable.salesTable();

        if(salesTable.SalesStatus==SalesStatus::Invoiced)
        {
     
//Any Action

        }
    }

Reference

Reference



Another Sample for OnModified of check box control - AllowEdit  text box control based on checkbox selection




 /// <summary>
    ///
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    [FormControlEventHandler(formControlStr(EcoResProductDetailsExtended, Other_CatchWeight), FormControlEventType::Modified)]
    public static void Other_CatchWeight_OnModified(FormControl sender, FormControlEventArgs e)
    {
        FormCheckBoxControl  callerButton = sender as FormCheckBoxControl ;  //Retrieves the button that we're reacting to
        FormRun element = callerButton.formRun();
        FormControl catchweightMultipleToSubProject = element.design(0).controlName("Other_CatchweightMultiple");
        if(callerButton.checked())
        {
            catchweightMultipleToSubProject.allowEdit(true);
        }
        else
        {
            catchweightMultipleToSubProject.allowEdit(false);
        }
    }


On Look Up Event for String Control in the form

 [FormControlEventHandler(formControlStr(VendBankAccounts, PartyPaymLocationName), FormControlEventType::Lookup)]
    public static void PartyPaymLocationName_OnLookup(FormControl sender, FormControlEventArgs e)
    {
        FormControl   callerStr = sender as FormControl;  //Retrieves the string that we're reacting to
        FormRun form = callerStr.formRun(); //Gets the running VendBankAccounts form

        FormDataSource vendBankAccount_ds = form.dataSource(formDataSourceStr(VendBankAccounts, VendBankAccount)) as FormDataSource;
        VendBankAccount vendBankAccount = vendBankAccount_ds.cursor();

        vendBankAccount.vendPartyPaymLookup(callerStr );
 

    }

Creating License Plate at Item Arrival line creation while Enter non-existing Liecense Plate



 public static void InventoryDimensionsGrid_LicensePlateId_OnEnter(FormControl sender, FormControlEventArgs e)
    {
            FormControl   callerStr = sender as FormControl;  //Retrieves the string that we're reacting to
            FormRun form = callerStr.formRun(); //Gets the running  form

            FormStringControl InventoryDimensionsGrid_LicensePlateId = form.design(0).controlName("InventoryDimensionsGrid_LicensePlateId");

            if(InventoryDimensionsGrid_LicensePlateId.text())
            {
                WHSLicensePlate::createLicensePlate(InventoryDimensionsGrid_LicensePlateId.text());
            }
    }

Assign or SET value to Form string control 

 [FormControlEventHandler(formControlStr(InventJournalTransferReceive, InventDimIssue_InventBatchId), FormControlEventType::Modified)]
    public static void InventDimIssue_InventBatchId_OnModified(FormControl sender, FormControlEventArgs e)
    {

        FormControl   callerStr = sender as FormControl;  //Retrieves the string that we're reacting to
        FormRun form = callerStr.formRun(); 
     
//   FormDataSource dsInventJournalTrans = sender.formRun().dataSource("InventJournalTrans");

     
        FormStringControl InventJournalTrans_PurchId = form.design(0).controlName("InventJournalTrans_PurchId");
     
        
     
               InventJournalTrans_PurchId.enabled(true);

                //True parameter append the text but false removes existing text and paste new text

                InventJournalTrans_PurchId.pasteText("SET TEXT HERE",FALSE);
                InventJournalTrans_PurchId.enabled(false);

              
            }
        }
    }

Published on:

Learn more
Need help with this product?

We can help you with Form Control Event Handler Methods in Dynamics 365

If you want help implementing, troubleshooting, or improving this product, contact us and we’ll point you in the right direction.

Sherif Fayed
Sherif Fayed

Share post:

Related posts

D365 Sending Email with Customer Account Statement SSRS report as attachment using X++

D365 Sending Email with Customer Account Statement SSRS report as attachment using X++ custTable _custTable;        &...

2 years ago

clicking link on info message X++ to Open form

 Message::AddAction() method can be used to embed an action within a message sent to the message bar. This method supports adding a singl...

2 years ago

D365 FO - Send Email with attachments by X++

 Go to System administration >> Setup >> Email >> System email templatesCreate New template [ExtensionOf(clas...

2 years ago

D365 FO Data entity Export using X++

This post provides information on exporting data entity through X++ in D365 FO. The post includes a code snippet written in X++ that can be us...

2 years ago

D365 FO Encryption And Decryption Using A Symmetric Key(AES) using X++

If you're looking to encrypt and decrypt data using a symmetric key in D365 FO, this tutorial is the right place to be. The post details the s...

2 years ago

Get multiple selected rows using D365 X++

This blog post offers a valuable insight into D365 X++, offering a detailed guide on how to get multiple selected rows. Multi-select for Butto...

2 years ago

D365 Solution for Cloud Dev machine show error ' The remote certificate is invalid according to the validation procedure. '

 You are getting 'The remote certificate is invalid according to the validation procedure.'Error show with all reports and  tired Ro...

2 years ago

Newsletter

Get the latest Dynamics 365 and Power Platform content in your inbox

A curated digest of community blogs, product news, videos, and podcasts — delivered without the noise.

Weekly updates Unsubscribe anytime Fresh community picks
We use your email only for the newsletter and you can unsubscribe at any time.
By subscribing, you agree to the privacy policy.