Won't Fix
Last Updated: 18 Aug 2017 15:47 by Miguel Angel
ADMIN
Pavlina
Created on: 12 Sep 2014 09:04
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Horizontal scrolling with Magic mouse on the Mac is not working

		
2 comments
Miguel Angel
Posted on: 18 Aug 2017 15:47
On your mac:
System preferences-> General-> Scroll bars-> Choose always.
ADMIN
Galin
Posted on: 11 Aug 2015 13:26
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;
		}