Scrollable tables

My brilliant coworker figured out how to adjust the scroll behavior to accomplish this. Just add this as a CSS style to your app (substitute tableName for the name of your table).

#rt-table-tableName {
  overscroll-behavior: contain; 
}
5 Likes