I am making use of the BufferView component. It works very well and really increases performance. However, it seems that one trying to instantiate more than a single buffer view at a time causes a problem. For example, I have a custom grid that has:
Code:
view: new Ext.ux.grid.BufferView({
scrollDelay: false
}),
It works great. But when I instantiate another copy of this grid inside another tab, when I go back to the first tab, the grid stops working and generates errors. Is there any specific reason why I can't have more than a single BufferView at a time?