Forum Discussion
CallumRaymond
Jun 16, 2020Copper Contributor
Adding an accordian web part to Sharepoint
Hi, Probably an really easy question for a lot on this forum so I apologise. I'm trying to build an accordion webpart to use in Sharepoint. I've followed the information on the Microsoft sit...
- Jun 17, 2020
JQueryWebPart.ts(20,1)
if you look into the file JQueryWebParts.ts, look for line 20, 1st character. Your issue is there whatever that is. As for the super
export default class DropDownWebPart extends BaseClientSideWebPart <IDropDownWebPartProps> {private lists: IDropdownOption[];private listsDropDown: PropertyPaneDropdown;public constructor() {super();}something like this, Hope that helps.
Jean-Marc Dejean
Jun 17, 2020Copper Contributor
JQueryWebPart.ts(20,1)
if you look into the file JQueryWebParts.ts, look for line 20, 1st character. Your issue is there whatever that is. As for the super
export default class DropDownWebPart extends BaseClientSideWebPart <IDropDownWebPartProps> {
private lists: IDropdownOption[];
private listsDropDown: PropertyPaneDropdown;
public constructor() {
super();
}
something like this, Hope that helps.