Won't Fix
Last Updated: 11 Aug 2015 14:01 by Erik
ADMIN
Pavlina
Created on: 04 Sep 2014 17:20
Category: UI for ASP.NET AJAX
Type: Bug Report
0
RadGrid horizontal scrollbar is not visible in Safari for MAC

		
2 comments
Erik
Posted on: 11 Aug 2015 14:01
We already got these suggestions but that's not the solution we are looking for. See the discussion in my forum post:

http://www.telerik.com/forums/horizontal-scrolling-with-magic-mouse-on-the-mac-is-not-working-correct
ADMIN
Galin
Posted on: 11 Aug 2015 13:29
There is an easy workaround for this problem by using the RadFormDecorator:
<telerik:RadFormDecorator runat="server" DecoratedControls="Scrollbars" />

The other option is to use the following CSS rules:

		div[id*="_Frozen"]::-webkit-scrollbar {
			height: 16px;
		}

		div[id*="_Frozen"]::-webkit-scrollbar-thumb:horizontal {
			border-width: 1px;
			border-style: solid;
		}