or
We received a complaint from a customer that our website has problems in IE 10. The scroll bar for the middle container in the middle of the page does not have a "track" in IE 10, thus not allowing the user to scroll in that box.
Turn on Compatibility Mode and the webpage displays fine. No problems in Chrome or Firefox either.
Inspecting the page in IE 10 (F12 Developer Tools), I'm not sure what's being changed in the code that causes the Compatibility Version to work. The average user won't know about Compatibility Mode so we're trying to fix this on our own.
The scroll bar was put there by our CMS.

<telerik:RadGrid ID="RadGrid1" runat="server" Skin="txstate" EnableEmbeddedSkins="false" Width="600px" Visible="false" > <MasterTableView Width="100%" DataKeyNames="ID" CommandItemDisplay="Top" CommandItemSettings-AddNewRecordText="Add New" CommandItemSettings-ShowAddNewRecordButton="true" CommandItemSettings-ShowRefreshButton="false"> <PagerStyle Mode="NextPrevAndNumeric" /> <Columns> <telerik:GridEditCommandColumn UniqueName="EditCommandColumn" ButtonType="LinkButton" EditText="Edit" /> <telerik:GridButtonColumn UniqueName="InsertColumn" CommandName="Add" Text="Add" ButtonType="LinkButton" /> <telerik:GridButtonColumn CommandName="Delete" Text="Delete" UniqueName= "DeleteColumn" /> </Columns> <EditFormSettings EditFormType="Template"> <FormTemplate> <asp:PlaceHolder ID="PlaceHolder1" runat="server" /> </FormTemplate> </EditFormSettings> </MasterTableView> </telerik:RadGrid>Protected Sub RadGrid1_ItemCreated(sender As Object, e As GridItemEventArgs) Handles RadGrid1.ItemCreated If TypeOf e.Item Is GridEditFormItem And e.Item.IsInEditMode Then Dim editItem As GridEditFormItem = DirectCast(e.Item, GridEditFormItem) Dim PlaceHolder1 As PlaceHolder = DirectCast(editItem.FindControl("PlaceHolder1"), PlaceHolder) PlaceHolder1.Controls.Add(New LiteralControl("<table border='0' cellpadding='5' cellspacing='0' width='100%' align='center'><tr><td width='110px'>")) Dim lb_Description As Label = New Label lb_Description.Text = "Description: " lb_Description.ID = "lb_Description" lb_Description.CssClass = "label" PlaceHolder1.Controls.Add(lb_Description) Dim txt_Description As RadTextBox = New RadTextBox
txt_Description.Text = editItem.Item("Description").Text
txt_Description.ID = "txt_Description"
txt_Description.Width = "200"
PlaceHolder1.Controls.Add(txt_Description)
Dim btn_update As Button = New Button
btn_update.Text = "Update"
btn_update.ID = "btn_Update"
btn_update.CommandName = "Update"
btn_update.CssClass = "button"
PlaceHolder1.Controls.Add(btn_update)
Dim btn_cancel As Button = New Button
btn_cancel.Text = "Cancel"
btn_cancel.ID = "btn_cancel"
btn_cancel.CommandName = "Cancel"
btn_cancel.CssClass = "button"
PlaceHolder1.Controls.Add(btn_cancel)
End If
End Sub

$(this._comboBox.get_element()).appendTo($("<div>").appendTo(this._containerElement));<div style="height:20%;padding-top:50px;"> <telerik:RadMenu ID="RadMenu1" Style="float:right;" Flow="Horizontal" runat="server"> <Items> <telerik:RadMenuItem Text="Messages"></telerik:RadMenuItem> <telerik:RadMenuItem Text="Stock"></telerik:RadMenuItem> <telerik:RadMenuItem Text="Cash"></telerik:RadMenuItem> <telerik:RadMenuItem Text="Staff"></telerik:RadMenuItem> <telerik:RadMenuItem Text="Reports"></telerik:RadMenuItem> <telerik:RadMenuItem selected="true" Text="Admin" > <Items> <telerik:RadMenuItem Text="Admin"></telerik:RadMenuItem> <telerik:RadMenuItem text="Stock Admin"></telerik:RadMenuItem> </Items> </telerik:RadMenuItem> </Items> </telerik:RadMenu> </div>
<style type="text/css">
.RadMenu_Default .rmGroup .rmLink {
padding-left: 0px ;
}
/*rmRootLink rmLink*/
.RadMenu_Default .rmGroup .rmLink .rmText {
padding-left: 5px ;
}
.RadMenu_Default .rmRootGroup .rmSelected
{
background:#f7931d; /*what happens when the Tab is 'Selected'*/
}
div.RadMenu .rmRootGroup
{
/*all the border tags here, remove the black border that went round the entire Menu Control*/
border-width:0px;
border-bottom:5px solid #f7931d;
}
div.RadMenu .rmRootGroup .rmItem .rmText
{
text-align:left;
/*the Border tags help to seperate each Menu Tab to make it look like its a seperate entity*/
border-left:solid;
border-right:solid;
border-left-color:white;
border-right-color:white;
width:70px; /*width of each root tab*/
height:35px; /*height of each root tab*/
color:#979797; /*colour of the text on the tab*/
}
div.RadMenu .rmItem:hover .rmText
{
color:white; /*font colour when hovering over*/
}
.RadMenu_Default .rmGroup .rmText
{
/*the border and background properties will remove the block on the left side of the drop down menu where an icon would usually be placed.*/
border: 1px solid #979797 ;
background: #f0f0f0 ;
}
.RadMenu_Default .rmText:hover
{
background:#f7931d; /*background of tabs when moused over*/
}
.RadMenu_Default
{
width:598px; /*width of the entire control*/
}
</style>