Hi All,
Can we restrict File Picker component to allow only video uploading, or is there any component particularly for video uploading
I think the only option is to use a custom form, then extract the extension of the file using a JavaScript column/splt text + single value combo, and validate using that extension.
- Create a user-specific column to store the video URL.
- Point a file picker to that column.
- Add a split text column and split the URL by the dot (.) character.
- Add a single value column and get the last element of the split text array.
- Validate using that value.
3 Likes