Skip to content

Latest commit

 

History

History
58 lines (41 loc) · 1.7 KB

File metadata and controls

58 lines (41 loc) · 1.7 KB
title description ms.author author ms.date ms.reviewer ms.topic ms.subservice contributors
ReactControl.updateView (Power Apps component framework API reference)| MicrosoftDocs
This method is called for a ReactControl when any value in the property bag changes.
hemantg
HemantGaur
03/25/2024
jdaly
reference
pcf
JimDaly

ReactControl.updateView

[!INCLUDE./includes/updateview-description.md]

Available for

Model-driven and canvas apps

Syntax

updateView(context)

Parameters

Parameter Name Type Required Description
context context yes Contains values as configured by the customizer mapped to the name defined in the manifest, and in the utility functions

Example

public updateView(context: ComponentFramework.Context<IInputs>): React.ReactElement
{
    const props: IHelloWorldProps = { name: 'Hello, World'};
    return React.createElement(
        HelloWorld, props
    );
}

Remarks

Set the value of the field component to the raw value from the configured field.

Values passed to this method may be null when data isn't ready. Learn to manage temporarily null property values passed to updateView

Related articles

React controls & platform libraries (Preview)
ReactControl
Power Apps component framework API reference
Power Apps component framework overview

[!INCLUDEfooter-include]