I have used RadUpload like this (see code below) with Q2, but with Q3 it does not work. I can Browse files as i like, but button Upload never appears. If I change IsAutomaticUpload to true, it works fine, but I need manual uploading.
Please, help me to solve this problem - it's very urgent. I don't want to go back to Q2 only because of this control, but it's functionality is very important in my project.
Please, help me to solve this problem - it's very urgent. I don't want to go back to Q2 only because of this control, but it's functionality is very important in my project.
<telerik:RadUpload HorizontalAlignment="Left" Width="700" Grid.Row="2" Grid.Column="0"
x:Name="RadUpload1"
Filter="All Files(*.*)|*.*"
FilterIndex="0" MaxFileCount="15"
IsAutomaticUpload="false"
OverwriteExistingFiles="True"
IsAppendFilesEnabled="True"
FileUploaded="RadUpload1_FileUploaded"
FileUploadFailed="RadUpload1_FileUploadFailed"
FileUploadStarting="RadUpload1_FileUploadStarting"
MaxFileSize="15000000" MaxUploadSize="15000000" />