We’re seeing an issue with the jqxGrid (3.0.4) in IE10 when using the zoom page button in the lower right. If we choose anything other than 100% zoom the jqxGrid will collapse down to a thin line the width of the original grid. Zooming back to 100% redraws the grid properly. Unfortunately I cannot reproduce this in the online grid demos on this site. Does anyone have any suggestions? This also happens in FF 25.0.1, but it works fine for us in IE9.
Here are the grid settings…
var searchGridOptions = {
theme: 'wamidnight',
width: '100%',
height: '100%',
source: gridDataAdapter,
sortable: true,
selectionmode: 'none',
columnsresize: true,
columnsreorder: true,
filterable: true,
showpinnedcolumnbackground: true,
columnsheight: '35px',
enabletooltips: true,
showtoolbar: true,
showstatusbar: true,
columns: gridColumns,
showaggregates: true,
rendertoolbar: function ($toolbar) {
//code here...
}
};