Hi,
when Pressing Tab and the Focus is on RadUpload While Clicking on the Enter key the File upload Dialog is not opened.The focus is on Select Button.The Issue is on RadUpload not in RadAsyncUpload..Please give me some solution.I Was Specified the AccessKey="W" also.but it is not working.
This is my code:
<div class="twocolumn row">
<label>
File *</label>
<div id="MainContents">
<telerik:RadUpload AllowedMimeTypes="xml,application/x-zip" Font-Names="Arial, Helvetica, sans-serif"
Font-Size="14px" ReadOnlyFileInputs="true" EnableViewState="false" InitialFileInputsCount="1"
MaxFileInputsCount="1" ToolTip="Select a valid file to upload" Style="margin-top: -3px;"
OnClientFileSelected="ReferralMgmtValidateUploadedFile" runat="server" ID="RadUpload1" AccessKey="W" DisablePlugins="true" EnableEmbeddedScripts="true"
RegisterWithScriptManager="false" EnableFileInputSkinning="true"
ControlObjectsVisibility="None">
<Localization Select="SELECT"/>
</telerik:RadUpload>
<label id="lbl-upload-error-msg" style="color: Red; width: 100%; text-align: left;
font-weight: normal; margin-bottom: 5px;">
</label>
<script type="text/javascript" language="javascript">
if (isMobileSafari()) {
$('#MainContents').html('Upload functionality is not available for this browser.');
}
</script>
</div>
</div>