I am using sap.m.Table
control.
Currently, entire page is scroll-able if there are more items.
I want to set only Table's items scroll-able keeping Table header fixed, so that it will always be visible when I'm scrolling.
Also, I want it to be responsive across multiple devices.
I have tried applying following CSS to header:
thead{
position: fixed;
}
and
for div
inside which Table
is added at runtime by SAPUI5:
#__xmlview0--tab{
overflow-y: scroll;
}
But it is distorting predefined style for table header.
Here is the link