I have a jqgrid that displays a large amount of dynamic data. I am looking for a way to hide the thumb of the vertical scrollbar in the jqgrid when scrolling using the mousewheel. Here is a basic example:
var data = [
[48803, "DSK1", "", "02200220", "OPEN"],
// more data here
];
// jQuery code to initialize the jqGrid with the data above
https://i.stack.imgur.com/Vzj0w.png
UPDATE I am working with version 4.6.0 of jqgrid. The details and data entry methods in the example are provided for illustration purposes only. The main question remains to hide the scrollbar thumb.
UPDATE1 Additional details such as datatype being json, rownum set to 50, height at 350, and paging enabled with scroll:true.