I have a RADUpload on a page, at runtime its not rendered, all I get are the add and delete buttons, yet exactly the same markup on a different page shows the upload component. Im not quite sure whats happened, but I also have a problem with the DatePickers on the same page, clicking the calendar icon doesnt show the popup calendar, it looks like the javascript isnt being activated
can anyone help ?
| <div class="basic_row_admin_tabular"> |
| <div class="two_col_left_short"> |
| Poster |
| </div> |
| <div class="two_col_liquid"> |
| <telerik:RadUpload |
| ID="RadUploadImage" runat="server" |
| Skin="Vista" |
| MaxFileInputsCount="1" |
| TargetFolder="~/Uploads" |
| OverwriteExistingFiles="true" |
| AllowedFileExtensions=".jpg,.jpeg,.gif" |
| MaxFileSize="10000000" |
| Culture="English (United Kingdom)" > |
| </telerik:RadUpload> |
| </div> |
| <div class="two_col_liquid"> |
| <asp:Button ID="ButtonUpload" runat="server" Text="Upload" |
| CausesValidation="False" onclick="ButtonUpload_Click" /> |
| </div> |
| </div> |
can anyone help ?