Attachment Picker Widget
Last modified by Vincent Massol on 2021/04/06
A new widget is available to help users select or upload attachments. Here's how you can use it:
{{velocity}}
{{html clean="false"}}
#set ($attachmentPickerParams = {
'name': 'attachment',
'value': 'Sandbox.WebHome@XWikiLogo.png',
'data-upload-allowed': $services.security.authorization.hasAccess('edit'),
'data-accept': 'image/,.mp4,.pdf',
'multiple': 'multiple',
'placeholder': 'Select attachment'
})
#attachmentPicker($attachmentPickerParams)
{{/html}}
{{/velocity}}
{{html clean="false"}}
#set ($attachmentPickerParams = {
'name': 'attachment',
'value': 'Sandbox.WebHome@XWikiLogo.png',
'data-upload-allowed': $services.security.authorization.hasAccess('edit'),
'data-accept': 'image/,.mp4,.pdf',
'multiple': 'multiple',
'placeholder': 'Select attachment'
})
#attachmentPicker($attachmentPickerParams)
{{/html}}
{{/velocity}}
Checkout the Suggest Widget documentation for more information.