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
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;
}