Hi,
I am using param Query grid and facing issue with the mouse wheel scroll.
When the grid is loaded, I am having around 200 records,when i tried to scroll down the results vertically with mouse it is not scrolling.
here is my code for grid.
eventgrid.pqGrid({
width: NMCApp.getSearchGridWidth(),
height: NMCApp.getSearchGridHeight(),
editable: false,
topVisible: false,
bottomVisible: false,
numberCell: false,
roundCorners: false,
wrap: false,
colModel: columnModel,
dataModel: { data: [] },
scrollModel: { horizontal: false }
});
can anyone suggest what Iam doing wrong.
How can I scroll down the results with mouse as well?