Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ypcode
Last active July 28, 2017 15:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ypcode/971f9293603e11bddd042112a054ff2b to your computer and use it in GitHub Desktop.
Save ypcode/971f9293603e11bddd042112a054ff2b to your computer and use it in GitHub Desktop.
// Add this in the imports
import {
IConfigurationService
} from "../../services";
// ....
// Add the following member to the KanbanBoardWebPart class
private config: IConfigurationService = null;
// ....
// Add the following method to the KanbanBoardWebPart class
public onPropertyPaneFieldChanged(propertyName: string, oldValue: string, newValue: string) {
this.config.statusFieldInternalName = this.properties.statusFieldName;
this.config.tasksListId = this.properties.tasksListId;
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment