In the meantime you can use the following css workaround that will fix the issue:
.rcbAutoWidthResizer .rcbScroll {
overflow: visible !important;
}
/*To target IE 6, 7 and 8*/
@media \0screen\,screen\9 {
.rcbAutoWidthResizer .rcbScroll {
overflow: auto !important;
}
}
/*To target IE 9 and 10*/
@media screen and (min-width:0\0) {
.rcbAutoWidthResizer .rcbScroll {
overflow: auto !important;
}
}