Hi Folks,
In DNN 7/8, is it possible to change the "Is Searchable" bool to enabled?
I created a custom module that originally didn't implement the ISearchable (ModuleSearchBase) supported feature in the module definition file.
I have since implemented the search feature and can't seem to get the module's install/reinstall routine to update the "Is Searchable" toggle.
My module definition file has this:
<supportedFeature>ISearchable</supportedFeature>
...and I also tried...
<supportedFeature>Searchable</supportedFeature>
But that just doesn't seem to enable the search function, even if I change to the module's version number.
The FeatureController.cs file inherits ModuleSearchBase and there is a GetModifiedSearchDocuments method that generates the results for the indexer. It works on my development machine, but not the remote server despite the fact that the [SupportedFeatures] setting in the table [DesktopModules] is identical.
I am trying to avoid uninstalling/installing the module because I'd then have to reconfigure the module across multiple pages and re-insert all the data and images.
Hopefully someone can help!
--Phil