Apply changes after editing web part properties.

What event do I trap to notify my web part of updated custom properties

TIA
Dave



Answer this question

Apply changes after editing web part properties.

  • AnthoDesigns

    Or inherit from EditorPart for your custom editor and override CreateEditorParts() in the webpart.
  • Libol

    OK, looks like it hits the property accessors automatically.
    The other way looks like overriding the GetToolParts() method and inheriting from the "Microsoft.SharePoint.WebPartPages.ToolPart" class for your own customtoolpart. You can then override the ApplyChanges() and SyncChanges() methods.

    Dave

  • Apply changes after editing web part properties.