You create a model-driven app.
There is a subgrid Reviews on the Information screen for the Product record.
You need to open an alert dialog when a user clicks on the "Great performance" review.
You want to use a JavaScript code that implements a Client API model.
Here is the line from your Javascript code with access to the subgrid:
/question/imgckeditor_12.jpg) 
                            What is the type of Client API Context object is the SLOT1?
Click on the arrows to vote for the correct answer
A. B. C. D.Correct Answer: C
Power Apps provides the Client API model for model-driven apps for users to implement for their business logic.
The Client API model includes objects and methods that developers can access using Javascript code.
There are four root objects of the Client API model: executionContext - this is an execution object of the model-driven app.
It gives access to the context of the forms and grids.
formContext - provides access to the form object using the executionContext.
gridContext - provides access to the grid (subgrid) on a form.
Xrm - provides access to the global object for operations that do not directly impact UI and data in forms, grids, controls.
Here is the sample of the Javascript implementation of the task:
![Register New Step @
General Configuration Information
Message Update ©
Primary Entity account
Secondary Entity
Filtering Attributes All Attributes
Event Handler (Plugin) PowerApps.Samples.FollowupPlugin - lsolatable
Step Name PowerApps.Samples.FollowupPlugin: Update of account
Run in User's Context Calling User
Execution Order 1
Description PowerApps.Samples.FollowupPlugin: Update of account
Event Pipeline Stage of Execution Execution Mode Deployment
PostOperation i © Asynchronous [¥] Server
© @ Synchronous [| Offline
|_| Delete AsyncOperation if StatusCode = Successful
v
Unsecure Configuration
Secure Configuration
Register New Step
Close](https://eaeastus2.blob.core.windows.net/optimizedimages/static/images/Microsoft-Power-Platform-Developer-(PL-400)/answer/imgckeditor_12.1.jpg) 
                            The executionContext provides access to the formContext object (Number 1)
The formContext gives access to the gridContext object (reviewsContext) (Number 2)
And Xrm opens the Alert Dialog form (Number 3)
For more information about model-driven apps Client API model, please visit the below URLs: