Skip to content

Commit db6d547

Browse files
committed
Add to TOC + file rename
1 parent 83eba64 commit db6d547

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

powerapps-docs/developer/model-driven-apps/TOC.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@
9292
- name: Column OnChange event
9393
href: clientapi/reference/events/attribute-onchange.md
9494
- name: Form OnLoad event
95-
href: clientapi/reference/events/form-onload.md
95+
href: clientapi/reference/events/form-onload.
96+
- name: Form OnLoaded event
97+
href: clientapi/reference/events/form-onloaded.md
9698
- name: Form OnSave event
9799
href: clientapi/reference/events/form-onsave.md
98100
- name: Form data OnLoad event
@@ -502,6 +504,8 @@
502504
items:
503505
- name: addOnLoad
504506
href: clientapi/reference/formcontext-ui/addOnLoad.md
507+
- name: addLoaded
508+
href: clientapi/reference/formcontext-ui/addloaded.md
505509
- name: clearFormNotification
506510
href: clientapi/reference/formcontext-ui/clearFormNotification.md
507511
- name: close
@@ -516,6 +520,8 @@
516520
href: clientapi/reference/formcontext-ui/refreshRibbon.md
517521
- name: removeOnLoad
518522
href: clientapi/reference/formcontext-ui/removeOnLoad.md
523+
- name: removeLoaded
524+
href: clientapi/reference/formcontext-ui/removeloaded.md
519525
- name: setFormEntityName
520526
href: clientapi/reference/formcontext-ui/setFormEntityName.md
521527
- name: setFormNotification

powerapps-docs/developer/model-driven-apps/clientapi/events-forms-grids.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ title: "Events in forms and grids in model-driven apps| MicrosoftDocs"
33
description: All client-side code is initiated by events. In model-driven apps, you associate a specific function in a JavaScript library to be executed when an event occurs. This function is called an *event handler*.
44
author: HemantGaur
55
ms.author: hemantg
6-
7-
ms.date: 04/01/2022
6+
ms.date: 07/08/2024
87
ms.reviewer: jdaly
98
ms.topic: reference
109
ms.subservice: mda-developer
@@ -69,6 +68,7 @@ Using the following methods to add and remove event handler for events that cann
6968
|-------|-------|
7069
|Attribute [OnChange](reference/events/attribute-onchange.md) | [addOnChange](reference/attributes/addonchange.md) and [removeOnChange](reference/attributes/removeOnchange.md) methods|
7170
|Form [OnLoad](reference/events/form-onload.md)| formContext.ui [addOnLoad](reference/formcontext-ui/addonload.md) and [removeOnLoad](reference/formcontext-ui/removeonload.md) methods|
71+
|Form [OnLoaded](reference/events/form-onloaded.md)| formContext.ui [addOnLoaded](reference/formcontext-ui/addonloaded.md) and [removeOnLoaded](reference/formcontext-ui/removeonloaded.md) methods|
7272
|Form data [OnLoad](reference/events/form-data-onload.md)| formContext.data [addOnLoad](reference/formcontext-data/addonload.md) and [removeOnLoad](reference/formcontext-data/removeonload.md) methods|
7373
|Form [OnSave](reference/events/form-onsave.md)| [addOnSave](reference/formcontext-data-entity/addonsave.md) and [removeOnSave](reference/formcontext-data-entity/removeonsave.md) methods|
7474
|Lookup control [PreSearch](reference/events/presearch.md)| [addPreSearch](reference/controls/addpresearch.md) and [removePreSearch](reference/controls/removepresearch.md) methods|

powerapps-docs/developer/model-driven-apps/clientapi/reference/events/form-loaded.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Form Loaded event (Client API reference) in model-driven apps| MicrosoftDocs"
2+
title: "Form Loaded event (Client API reference) in model-driven apps | MicrosoftDocs"
33
description: Includes description and supported parameters for the Loaded event.
44
author: aorth
55
ms.author: aorth

powerapps-docs/developer/model-driven-apps/clientapi/reference/formContext-ui/addLoaded.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "ui.addLoaded (Client API reference) in model-driven apps| MicrosoftDocs"
33
description: Includes description and supported parameters for the ui.addLoaded method.
44
author: aorth
55
ms.author: aorth
6-
ms.date: 07/02/2024
6+
ms.date: 07/08/2024
77
ms.reviewer: jdaly
88
ms.topic: reference
99
applies_to: "Dynamics 365 (online)"
@@ -28,7 +28,7 @@ Adds a function to be called on the form [Loaded](../events/form-loaded.md) even
2828

2929
### Related articles
3030

31-
[removeLoaded](removeOnLoad.md)
31+
[removeLoaded](removeloaded.md)
3232
[Form Loaded event](../events/form-loaded.md)
3333
[formContext.ui](../formContext-ui.md)
3434
[formContext](../../clientapi-form-context.md)

powerapps-docs/developer/model-driven-apps/clientapi/reference/formContext-ui/removeLoaded.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "ui.removeLoaded (Client API reference) in model-driven apps| MicrosoftDo
33
description: Includes description and supported parameters for the ui.removeLoaded method.
44
author: aorth
55
ms.author: aorth
6-
ms.date: 07/02/2024
6+
ms.date: 07/08/2024
77
ms.reviewer: jdaly
88
ms.topic: reference
99
applies_to: "Dynamics 365 (online)"
@@ -28,7 +28,7 @@ Removes a function from the form [Loaded](../events/form-loaded.md) event.
2828

2929
### Related articles
3030

31-
[addLoaded](addLoaded.md)
31+
[addLoaded](addloaded.md)
3232
[Form Loaded event](../events/form-loaded.md)
3333
[formContext.ui](../formContext-ui.md)
3434
[formContext](../../clientapi-form-context.md)

0 commit comments

Comments
 (0)