ReactControl.updateView
This method will be called when any value in the property bag has changed. This includes field values, datasets, global values such as container height and width, offline status, component metadata values such as label, visible, etc.
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