I am using FileItem.setAccept() to set the proper file types I want to allow in an upload file operation. Using FileItem.setAccept("text/plain") works as expected, allowing me to see only .txt files:
But when I use FileItem.setAccept("text/csv") or FileItem.setAccept("text/csv,text/plain"), the file chooser shows no .csv files (only .txt files in the second case - which is the same result I get when only using "text/plain").
This is the whole list of files that is available at that location:
Is text/csv not supported by SmartGWT?
Thanks
I am using SmartgGWT 6.0p 2016-05-11.
But when I use FileItem.setAccept("text/csv") or FileItem.setAccept("text/csv,text/plain"), the file chooser shows no .csv files (only .txt files in the second case - which is the same result I get when only using "text/plain").
This is the whole list of files that is available at that location:
Is text/csv not supported by SmartGWT?
Thanks
I am using SmartgGWT 6.0p 2016-05-11.
Comment