Hi,
Is it possible to search with specific file types in a media gallery like .pdf, .xlx, etc
As it was not listed over here Search fields by typeor in the gallery.List API
Hi,
Is it possible to search with specific file types in a media gallery like .pdf, .xlx, etc
As it was not listed over here Search fields by typeor in the gallery.List API
You would need to do this with a solr query rather that the list api and ootb I don't think that the file types/extensions are indexed
You would need to expose the file type as a custom facet
You would also need to add a onBeforeBulkIndex handler to extract the extension and add it into the solr document
You would need to do this with a solr query rather that the list api and ootb I don't think that the file types/extensions are indexed
You would need to expose the file type as a custom facet
You would also need to add a onBeforeBulkIndex handler to extract the extension and add it into the solr document
Thanks Karl, Yes we can index the filetype and make a query using solr.
Just checking if there was any default way without customizations.