StandardControl.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 apps, canvas apps, & portals.
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>): void
{
this._labelElement.innerText = "Hello World! (TS)";
}
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
Control
Power Apps component framework API reference
Power Apps component framework overview