Hi
I copied the dropdown grid example from: http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/index.htm#demos/jqxgrid/dropdowngrid.htm
and changed the grid initialization slightly:
$(“#jqxgrid”).jqxGrid(
{
width:550,
height:400,
source:dataAdapter,
columnsresize:true,
columns:[
{text:‘First Name’,columntype:‘textbox’,datafield:‘firstname’,width:90},
{text:‘Last Name’,datafield:‘lastname’,columntype:‘textbox’,width:90},
{text:‘Product’,columntype:‘dropdownlist’,datafield:‘productname’,width:180},
{text:‘Quantity’,datafield:‘quantity’,width:70,cellsalign:‘right’},
{text:‘Price’,datafield:‘price’,cellsalign:‘right’,cellsformat:‘c2’}]
I have removed pageable: true and autoheight: true so that the grid should display all data and the user should be able to scroll down the grid if user has clicked onto the button.
But the result is, that the button opens and displays the grid. The grid has as expected no paging at the bottom and displays the scrollbar. But I’m unable to scroll! It seems the scrollbar is frozen. If I click onto the bottom arrow of the scrollbar the scrollbar moves down but the data is not moved. After this click the grid at all behaves unexpectedly.
JqWidgets 2.7, Internet Explorer 8 on Windows 7 64Bit.
Hope you can reproduce the behavior and give me a hint how to get it work?
Regards
Adrian
});