This is a migrated thread and some comments may be shown as answers.

Filtering issue in non IE browsers.

4 Answers 51 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
JC
Top achievements
Rank 1
JC asked on 28 Jun 2013, 06:01 AM
Hi

The file filtering in File Open dialog is working in IE only and in other browser it list all the files. Why this is happening? Any solution?

4 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 28 Jun 2013, 06:11 AM
.
0
Shinu
Top achievements
Rank 2
answered on 28 Jun 2013, 06:12 AM
Hi JC,

RadAsyncUpload uses Upload Modules for different browsers. For Internet Explorer it uses Silverlight which allows to display the filter extensions in Open Dialog Window. For other modules that support rest of the browsers filter is working but it is not displayed in the Open Dialog Window as modules don't support it. Here is the help topic where this issue is explained.

Thanks,
Shinu.
0
JC
Top achievements
Rank 1
answered on 05 Sep 2013, 07:44 PM
Hi shinu, in javascript how can I check if File Api is used as the module object for uploading? Also is it possible to get browser name with version?
0
Shinu
Top achievements
Rank 2
answered on 06 Sep 2013, 05:56 AM
Hi JC,

Please have a look at the following JavaScript code to check for File API module.

JavaScript:
var radasyncupload = $find('<%=RadAsyncUpload1.ClientID %>');
if (radasyncupload.get_loadedModuleName() == "File API") {
    //your code
}

You can use the window.navigator object contains information about the visitor's browser. Please visit this link to know more about this.

Thanks,
Shinu.
Tags
AsyncUpload
Asked by
JC
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
JC
Top achievements
Rank 1
Share this question
or