Forum Discussion
May 25, 2017
Need help on SPFX web part properties search issue
We need help on SharePoint SPFX implementation. We have created one sample web part and one description property in it. When we are trying to search that property we are not able to search it. We h...
Wictor Wilen
Sep 04, 2017Iron Contributor
You need to add isSearchablePlainText the parameter to your return value:
protected get propertiesMetadata(): IWebPartPropertiesMetadata {
return {
'spfxcrawl': { isSearchablePlainText: true }
};
}Yannick Plenevaux
Sep 19, 2017Copper Contributor
Hi
isSearchablePlainText is not needed if isHtmlString is specified, both flag the property as searchable.