if you want to add scroll to child grid in a page then add the following code in pageStyle
#kz_Child_11 is div above the child grid <table> tag
#kz_Child_11{
overflow-y: scroll;
height: 700px;
padding-bottom-200px;
}
#kz_Child_11 tfoot {
position: sticky;
bottom: 0;
z-index: 2;
}
.PageChild thead{
background-color: #C4DEF7 !important;
}
.PageChild tfoot{
background-color: #BCD5ED !important;
}
or
if you want to add scroll to all child grid then add the following code in UserData/css/style.css
.kz_Child{
overflow-y: scroll;
height: 700px;
padding-bottom-200px;
}
.kz_Child tfoot {
position: sticky;
bottom: 0;
z-index: 2;
}
.PageChild thead{
background-color: #C4DEF7 !important;
}
.PageChild tfoot{
background-color: #BCD5ED !important;
}