Views:

Applies to Product - Microsoft Dataverse
 

What’s happening?
The customer is inquiring about the possibility of using JavaScript on a bulk edit page within the application, specifically seeking confirmation on whether this can be achieved.
 

Reason:
After internal discussions and testing, it has been determined that JavaScript customization on the bulk edit page is not supported. The script does not execute when using the bulk edit functionality.
 

Resolution:
Alternative approaches to achieve similar functionality include:

  • Business Rules: Implement business rules that can be triggered when records are opened individually after being updated on the bulk edit page.
  • JavaScript on Main Form: Use JavaScript functions registered on the OnLoad or OnSave events of the main form. After updating records in the bulk edit page, each record must be opened individually for the JavaScript to execute.
  • Plugins: Write a plugin using C# to handle updates directly. This can automatically update fields based on changes made in the bulk edit page without needing to open each record.
  • Power Automate Flow: Create a flow that triggers on changes to specific fields, allowing for automatic updates based on bulk edits.
These alternative solutions can be selected based on specific business scenarios and requirements.