Hi,
I have the following grid –
$(“#jqxgrid”).jqxGrid(
{
width: ‘99.5%’,
source: dataAdapter,
theme: ‘darkblue’,
groupable: true,
editable:true,
groupsrenderer:groupsrenderer,
groupsexpandedbydefault: true,
showgroupsheader: false,
showgroupmenuitems: false,
selectionmode: ‘singlecell’,
groups: [‘object’],
columnsresize: true,
pageable: true,
autorowheight: true,
autoheight: true,
selectionmode: ‘singlerow’,
editmode: ‘click’,
showtoolbar: true,
…
….
In this grid I have a vertical scrollbar.
For some reason this scrollbar scrolls the column header/groupheader/statusbar and the bottom paging info.
I see in all the examples (such as grouping.htm) the the columns are fixed and do not scroll.
Is there a setting I am missing to get this?
Thanks.