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

Different size in IE9 vs Chrome/FF

0 Answers 24 Views
Upload
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
joe castle
Top achievements
Rank 1
joe castle asked on 20 Aug 2011, 12:41 PM
Hi,

The upload seems to have different size in the different browsers which affects the rest of my page's layout. 
Made the upload's background red to visualize the difference:

@( Html.Telerik().Upload()
.Name("attachments")
.ShowFileList(false)
.Multiple(false)
.Async(async => async
    .Save("Save", "Home")
    .AutoUpload(true)
      )
                    .ClientEvents(c => c
                        .OnSuccess("onSuccess")
                        .OnUpload("onUpload")
                    )
                    .HtmlAttributes(new { style = "background: red; " })
    )


The different renderings are attached. 
Any workaround for similar rendering in IE9 as in the rest?

Thanks

Tags
Upload
Asked by
joe castle
Top achievements
Rank 1
Share this question
or