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

upload (uploaded files' information is rendered Above or Below file input.

2 Answers 52 Views
Upload (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Hem
Top achievements
Rank 1
Hem asked on 05 Jun 2012, 03:26 PM
HI,

Is there any way that move the button on the top instead of having it at the bottom and couldn't find this UploadedFilesRendering. It works fine on AsyncUpload but not in Normal Upload. Is there any way that to fix this issue.

thanks


2 Answers, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 08 Jun 2012, 01:15 PM
Hello Hem,

 
This functionality is inbuilt only in RadAsyncUpload and is not supported by RadUpload. You can only adjust different buttons visibility as it is explained in this help article.

All the best,
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Hem
Top achievements
Rank 1
answered on 08 Jun 2012, 01:46 PM
Hi,

Thank you for your quick response. I think there is way to adjust the Add Button. In order to position it  at the above of the input   you need to change the position of the button to (Absolute) and also the ruInput position to (Static). and it work fine.

thank you

 .RadUpload .ruAdd
 {
    position: absolute !important;
    top: 10px;
    left: 0px;
  }
  .RadUpload .ruInputs
  {
      position: static !important;
      margin-top: 6px;
   }
Tags
Upload (Obsolete)
Asked by
Hem
Top achievements
Rank 1
Answers by
Plamen
Telerik team
Hem
Top achievements
Rank 1
Share this question
or