There is an odd behavior only in IE 9, where the SearchContext combo expands to fill the entire search box. The search text and icon are then shifted to the far right. This happens when you first hover over the search box, and only in IE 9. Firefox, IE 8, 10 and 11 do not exhibit this behavior. You can see the result of this behavior in the two attached files: Quirky.gif (see aspx source below), and from the Telerik Demo page.
Any ideas on why this happening in IE 9? I have too many users with IE 9 to just ignore it.
Thanks!
Dave
Any ideas on why this happening in IE 9? I have too many users with IE 9 to just ignore it.
Thanks!
Dave
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Test2.aspx.cs" Inherits="InsureHubWeb.Test2" %>
<!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"
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
EnablePageMethods
=
"true"
runat
=
"server"
>
<
Services
>
<
asp:ServiceReference
path
=
"~/WS/wsIHExplorer.asmx"
/>
</
Services
>
</
telerik:RadScriptManager
>
<
telerik:RadSkinManager
ID
=
"RadSkinManager1"
runat
=
"server"
Skin
=
"Default"
ShowChooser
=
"false"
/>
<
telerik:RadSearchBox
ID
=
"RadSearchBox1"
runat
=
"server"
EnableAutoComplete
=
"false"
EnableViewState
=
"false"
Width
=
"500"
Label
=
"Look In:"
EmptyMessage
=
"Enter name or part of name"
>
<
SearchContext
ShowDefaultItem
=
"false"
>
<
Items
>
<
telerik:SearchContextItem
Text
=
"This Folder"
Key
=
"1"
/>
<
telerik:SearchContextItem
Text
=
"All Folders"
Key
=
"2"
/>
</
Items
>
</
SearchContext
>
</
telerik:RadSearchBox
>
</
form
>
</
body
>
</
html
>