Use Devextreme Infinitive Scroll Not Working in iped Devices.
Answers (1)
Add Answer- you can Try this CSS to set the width and height of the dxDataGrid in DevExtreme Infinitive scroll for Ipad Devices
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
.dx-scrollbar-vertical .dx-scrollbar-hoverable {
width: 20px !important;
height: 100px !important;
}
.dx-scrollbar-vertical .dx-scrollable-scroll {
width: 20px !important;
height: 100px !important;
}
.dx-scrollbar-horizontal .dx-scrollbar-hoverable {
height: 20px !important;
}
.dx-scrollbar-horizontal .dx-scrollable-scroll {
height: 20px !important;
}
}