How do I get a video to you beings your "attach files" only accepts graphics extensions. I have a wmv file that shows the standard input, radUpload, and radAsyncUpload. Both the standard and radUpload show file history, radAsyncUpload doesn't. This is my aspx code.
<%--Standard Input--%>
<
tr
>
<
td
>
<
asp:Label
ID
=
"Label24"
runat
=
"server"
Text
=
"Standard Input"
></
asp:Label
>
</
td
>
</
tr
>
<
tr
>
<
td
>
<
input
id
=
"aspInput"
runat
=
"server"
type
=
"file"
/>
</
td
>
</
tr
>
<
tr
>
<
td
>
</
td
>
</
tr
>
<%--RadUpload--%>
<
tr
>
<
td
>
<
asp:Label
ID
=
"Label18"
runat
=
"server"
Text
=
"RadUpload"
></
asp:Label
>
</
td
>
</
tr
>
<
tr
>
<
td
>
<
telerik:RadUpload
ID
=
"fupDocument"
runat
=
"server"
Localization-Select
=
"Browse"
TabIndex
=
"-1"
>
<
Localization
Select
=
"Browse"
></
Localization
>
</
telerik:RadUpload
>
</
td
>
</
tr
>
<
tr
>
<
td
>
</
td
>
</
tr
>
<%--RadAsyncUpload--%>
<
tr
>
<
td
>
<
asp:Label
ID
=
"Label22"
runat
=
"server"
Text
=
"RadAsyncUpload"
></
asp:Label
>
</
td
>
</
tr
>
<
tr
>
<
td
>
<
telerik:RadAsyncUpload
ID
=
"radUpload1"
runat
=
"server"
MultipleFileSelection
=
"Automatic"
Width
=
"100%"
EnableEmbeddedSkins
=
"false"
ControlObjectsVisibility
=
"All"
MaxFileInputsCount
=
"5"
InputSize
=
"50"
OnClientAdded
=
"onClientAdded"
OnClientFilesSelected
=
"onClientFilesSelected"
EnableFileInputSkinning
=
"false"
>
</
telerik:RadAsyncUpload
>
</
td
>
</
tr
>
<
script
type
=
"text/javascript"
language
=
"javascript"
>
var isCanceled = false;
function onClientFilesSelected(sender, args) {
if (args.get_count() > 5) {
args.set_cancel(true);
isCanceled = true;
alert("Please only select a maximum of 5 files");
}
}
function onClientAdded(sender, args) {
if (isCanceled && sender._uploadedFiles.length > 0) {
$telerik.$(args.get_row()).remove();
isCanceled = false;
}
}
</
script
>