Skip to content

Getting Started Configure Web Part Properties

Bill Baer edited this page Apr 12, 2017 · 3 revisions

Configure Web Part Properties

Before you can use the configurable web part effects and interactions they need to be declared in IQueryUiWebPartProps. To configure and make available the jQuery UI effects and interactions open IJQueryUIWebPartProps.ts and replace the existing code with the following:

export interface IJQueryUiWebPartProps {
  description: string;
  list: string;
  speed: number;
  resize: boolean;
  sort: boolean;
}

Save IJQueryUIWebPartProps.ts.

To learn more about integrating a Property Pane refer to https://dev.office.com/sharepoint/docs/spfx/web-parts/basics/integrate-with-property-pane.

Clone this wiki locally