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
Sherif Fayed
Sherif Fayed

Share post:

Related posts

Is Microsoft Dynamics CRM Affordable for Small Nonprofits?

Satish Reddy By Satish Reddy | Reading time 6 mins When considering a CRM solution, affordability is often a primary concern for small no...

2 months ago

How Microsoft Dynamics CRM Services Helps a Startup Nonprofit

Satish Reddy By Satish Reddy | Reading time 6 mins For startup nonprofits, the right Customer Relationship Management (CRM) system can be...

2 months ago

Easy Plugin Registration Tool Installation for Dynamics 365 CE Developers

Hi Folks, Are you a Power Platform or Dynamics 365 CE Developer, you would definitely need to work on Plugin Registration tool at any given po...

2 months ago

Web resource method does not exist in Dynamics 365 CE

Got the below error while working on Onload of Account record JavaScript in Microsoft Dynamics 365 CE. Script Error One of the scripts for thi...

2 months ago

How to get Environment Variable Value in Dynamics 365 CE using JavaScript?

We might have got a scenario to use the Environment Variable Value in the JavaScript in Dynamics 365 CE. In this article, will explain about r...

3 months ago

Enhancing Business Efficiency with Dynamics 365 CE/CRM AI Capabilities

Artificial intelligence (AI) is a vital catalyst for business transformations in this digital era. A leading player in this revolution

3 months ago

Interview Questions and Answers Dynamics 365 CE and Power Platform – Ultimate Guide

In today's business landscape, Dynamics 365 Customer Engagement (CE) and the Power Platform have emerged as game-changing tools that have tran...

4 months ago

Back to Basics # 72: Limit Special Characters Using a Webresource in Dynamics CRM

Recently we got a requirement to restrict user to enter special characters. Step 1 : Use the below method for restricting special characters S...

4 months ago

20 Most commonly used JavaScript Scenarios with Sample code Snippet in Form Script Dataverse/ Dynamics 365 CE

JavaScript is a powerful tool for developers working with Dataverse (formerly known as Common Data Service) and Dynamics 365 Customer Engageme...

5 months ago

New and Retired Microsoft Dynamics 365 Certifications

Microsoft has recently shared updates regarding new and retired certifications for Microsoft Dynamics 365. This post provides an overview of t...

5 months ago
Stay up to date with latest Microsoft Dynamics 365 and Power Platform news!
* Yes, I agree to the privacy policy