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

RadUpload select button hidden in IE8 compatability mode

1 Answer 24 Views
Upload (Obsolete)
This is a migrated thread and some comments may be shown as answers.
ScottB
Top achievements
Rank 1
ScottB asked on 18 Jun 2012, 09:21 PM

When using IE8 in compatability mode, the RadUpload control "select" button appears hidden when the InputSize property is increased to a value above 55.  How can I fix this?

Here is the code on my simple test page.  See attached for display results.

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %>

 

<%

 

@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>

 

<%

 

@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>

 

<!

 

 

DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<

 

 

html xmlns="http://www.w3.org/1999/xhtml">

 

<

 

 

head runat="server">

 

 

 

<title></title>

 

</

 

 

head>

 

<

 

 

body>

 

 

 

<form id="form1" runat="server">

 

 

 

<ajaxToolkit:ToolkitScriptManager runat="Server" EnablePartialRendering="true" ID="ScriptManager1" />

 

 

RadUpload with InputSize = 65...

 

<br />

 

 

 

<telerik:RadUpload

 

 

 

ID="RadUpload0"

 

 

 

runat="server"

 

 

 

MaxFileInputsCount="1"

 

 

 

InitialFileInputsCount="1"

 

 

 

ControlObjectsVisibility="None"

 

 

 

CssClass=""

 

 

 

InputSize="65" />

 

<

 

 

br /><br />

 

RadUpload with InputSize = 50...

 

<br />

 

 

 

<telerik:RadUpload

 

 

 

ID="RadUpload1"

 

 

 

runat="server"

 

 

 

MaxFileInputsCount="1"

 

 

 

InitialFileInputsCount="1"

 

 

 

ControlObjectsVisibility="None"

 

 

 

CssClass=""

 

 

 

InputSize="50" />

 

 

 

</form>

 

</

 

 

body>

 

</

 

 

html>

 

1 Answer, 1 is accepted

Sort by
0
Peter Filipov
Telerik team
answered on 19 Jun 2012, 08:49 AM
Hello Developer,

Thank you for contacting Telerik Support.

The InputSize property gets or sets the number of letters that the input can display. In the different browsers the size of the letters is different and the dimensions of the input vary. To avoid that appearance you need to set the width property of the RadUpload control too. For more details please review the following help article.

I will be glad to assist you again.

Regards,
Peter Filipov
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.
Tags
Upload (Obsolete)
Asked by
ScottB
Top achievements
Rank 1
Answers by
Peter Filipov
Telerik team
Share this question
or