I am new in Alfresco, and currently I am working on small project. The problem that I have is that I need to set one action from multi-select to be visiable just for one user group. This action is on Search window, and it's download action. (Picture attached)
I read that we can use Evaluators, but I am not sure how to do that. This is my code inside xml:
<config evaluator="string-compare" condition="DownloadAll">
<multi-select>
<action type="action-link" id="onDownloadAllDocumentAsZip" icon="document-download"
label="action.download.all.as.zip.label" />
<action type="action-link" id="onDownloadAllAsExcel" icon="document-download"
label="action.download.all.as.excel.label" />
<action type="action-link" id="onDownloadAllStudyNotificationAsExcel" icon="document-download"
label="action.download.all.study.notification.as.excel.results.label" />
<action type="action-link" id="onDownloadAllAsExcelIUCLID" icon="document-download"
label="action.download.all.as.excel.iuclid.label" />
<action type="action-link" id="onDownloadAllAsExcelUpdateMetadata" icon="document-download"
label="action.download.all.as.excel.update.metadata.label" />
</multi-select>
</config>
I would have to introduce Evaluators or something like that on last action inside this multi-select.
Thanks in advance!