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

sp webpart base.basewebpart.onpropertypaneconfigurationcomplete

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

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

BaseWebPart.onPropertyPaneConfigurationComplete() method

This API is invoked when the configuration is completed on the PropertyPane. virtual

Signature:

protected onPropertyPaneConfigurationComplete(): void;

Returns:

void

Remarks

This event method is invoked in the following cases:

  • When the CONFIGURATION_COMPLETE_TIMEOUT((currently the value is 5 secs) elapses after the last change.

  • When user clicks the "X" (close) button before the CONFIGURATION_COMPLETE_TIMEOUT elapses.

  • When user clicks the 'Apply' button before the CONFIGURATION_COMPLETE_TIMEOUT elapses.

  • When the user switches web parts then the current web part gets this event.

Clone this wiki locally