Skip to content
This repository has been archived by the owner on Oct 23, 2021. It is now read-only.

sp webpart base.basewebpart.disablereactivepropertychanges

John Nguyen edited this page Apr 22, 2021 · 2 revisions

Home > @microsoft/sp-webpart-base > BaseWebPart > disableReactivePropertyChanges

BaseWebPart.disableReactivePropertyChanges property

This property is used to change the web part's property pane interaction from Reactive to NonReactive. virtual

Signature:

protected get disableReactivePropertyChanges(): boolean;

Remarks

The default behavior is Reactive.

Reactive implies that changes made in the PropertyPane are transmitted to the web part instantly and the user can see instant updates. This helps the page creator get instant feedback and decide if they should keep the new configuration changes or not.

NonReactive implies that the configuration changes are transmitted to the web part only after "Apply" PropertyPane button is clicked.

Clone this wiki locally