Hi
I tried to provide different files using Browse button, it does not allow to select files from different folders on local machine though i can select more than one file at same time from single folder
I tried to provide two different browse button to upload file from different folder, There are two different FileItem with different name. form submission gives warning
WARN: dynamicForm: order:This DynamicForm contains more than one item of type FileItem. This is not supported - a DynamicForm can only support a single FileItem.
server end only receive value for first FileItem.
Based on warning, i assume client code ignore FileItem 2. Is there any work around to user select files from different folder.
SmartGWT version - 13.0-p20221105
FileItem myfile = new FileItem();
myfile.setName("documents");
myfile.setTitle("select file");
myfile.setType(MYAssaAbloyConstants.BINARY);
I tried to provide different files using Browse button, it does not allow to select files from different folders on local machine though i can select more than one file at same time from single folder
I tried to provide two different browse button to upload file from different folder, There are two different FileItem with different name. form submission gives warning
WARN: dynamicForm: order:This DynamicForm contains more than one item of type FileItem. This is not supported - a DynamicForm can only support a single FileItem.
server end only receive value for first FileItem.
Based on warning, i assume client code ignore FileItem 2. Is there any work around to user select files from different folder.
SmartGWT version - 13.0-p20221105
FileItem myfile = new FileItem();
myfile.setName("documents");
myfile.setTitle("select file");
myfile.setType(MYAssaAbloyConstants.BINARY);
Comment