I’m guessing you have a datatype called ‘File’ (with a capital ‘F’)…
So, that’s a custom datatype (which you happen to have called File), but it’s NOT a ‘file’ (note the lowercase ‘f’).
Your RG content type is set to ‘File’ (your custom datatype), and not ‘file’ (the actual type of data that is a file, and the type of which is the MultiFile Uploader’s type)…
So, just change the RG content type from ‘File’ to ‘file’ and you should be able to use the MultiFile Uploader’s value as its datasource.
1 Like