Hi,
Thanks for the reply.
I was already using the virtual mode (virtualX: true, virtualY: true ) property, as my grid contains large data with around 500 rows and 50 columns. Copy/Paste is still slow in IE8, I tried virtual mode in your demo as well which it didn't help either there as well in IE8.
Also here are my properties list on the grid:
var obj = {
width: 1300, //width of grid
height: 450, //height of grid
colModel: columns,
dataModel: {data: rows},
sortable: true,
freezeCols:7,
collapsible:{on:false,collapsed:false},
selectionModel: { type: 'cell' },
editModel: { clicksToEdit: 2 },
bottomVisible:false,
filterModel: { header: true, type: 'local' },
virtualX:true,
virtualY:true,
showTitle:false,
showTop:true,
showBottom:false,
roundCorners:true,
scrollModel:{pace: 'consistent', flexContent:true }
};
Please suggest.