Hi All,
I am uisng paramQuery grid for results.
I am facing when I am having more columns.
If you scroll the horizontal scroll bar in the grid output, you will see that there are 4 or 5 empty columns on the right hand side of the grid.
Here is my Code:
gridUsage.pqGrid({
width: getSearchGridWidth(),
height: getSearchGridHeight(),
editable: false,
topVisible: false,
bottomVisible: false,
numberCell: false,
roundCorners: false,
wrap: false,
colModel: columnModel,
dataModel: { data: [] },
flexWidth: true,
flexHeight: true
// scrollModel: { pace: 'consistent', horizontal: true },
// scrollModel: { autoFit: true }
});
Please help me in how can I restrict the scroll bar from going to right after reaching the end of grid.
or
How can I hide/restrict the empty columns on the right side of grid.