Question:
In the Export UI, is there a way to add more Filter options?
How do I enable the export button in the UI for advanced searches?
Advanced Search Export
Answer:
It is possible to export more options that are supported through queries in the advanced search UI.
There is an export button that needs to be enabled, which can be enabled through the self-service UI Modeler's Export/import functionality.
You need to modify the com.reltio.plugins.search.json file.
Add this code snippet:
"consoleExportApp": {
"name": "Export",
"path": "entities"
}
Example of where you should add it:
{
"point": "com.reltio.plugins.ui.view",
"id": "com.reltio.plugins.search.dev.SearchView",
"class":"com.reltio.plugins.search.dev.SearchView",
"react-class": "com.reltio.plugins.react.ReactSearchView",
"items-on-page": 15,
"bulk-update": true,
"options": {
"showSearchByOv": true,
"scoreEnabled": true
},
"tableViewItemsOnPage": 25,
"exportTypes": [
"json",
"csv",
"csv_exploded"
],
"consoleExportApp": {
"name": "Export",
"path": "entities"
}
}
After 5-10 minutes, the export button will be available in the UI and you may export your advanced searches through that way.
Comments
Please sign in to leave a comment.