約 10 列のグリッド パネルがあり、データ ストアには約 1000 レコードがあります。表示可能なレコードの数がデータ ストアのレコード数よりも少ないため、グリッド パネルに垂直スクロール バーが表示されます。グリッドが Internet Explorer 9 または Google Chrome で表示されている場合、マウスのスクロール ホイールを使用すると、垂直スクロール バーがすばやくすばやく移動します。しかし、Mozilla Firefox では、スクロールが非常に遅くなります。指を完全に引くたびに、追加のレコード/行が 1 つ、またはそれ以下になります。
どうすればこれを修正できますか?
Mozilla Firefox 14.0.1 を使用しています
17:21 更新.. ページング ツールバーが表示されない
var store = new Ext.data.Store({
pageSize: 50,
// allow the grid to interact with the paging scroller by buffering
buffered: true,
// never purge any data, we prefetch all up front
purgePageCount: 0,
model: 'Project',
//proxy: {
// type: 'memory'
//},
proxy: new Ext.ux.AspWebAjaxProxy({
url: '/Controls/ProjectList/ProjectListService.asmx/GetProjectList',
actionMethods: {
create: 'POST',
destroy: 'DELETE',
read: 'POST',
update: 'POST'
},
reader: {
type: 'json',
model: 'Project',
root: 'd'
},
headers: {
'Content-Type': 'application/json; charset=utf-8'
}
}),
autoLoad: true
});
Ext.define('Ext.ux.AspWebAjaxProxy', {
extend: 'Ext.data.proxy.Ajax',
require: 'Ext.data',
buildRequest: function (operation) {
var params = Ext.applyIf(operation.params || {}, this.extraParams || {}),
request;
params = Ext.applyIf(params, this.getParams(params, operation));
if (operation.id && !params.id) {
params.id = operation.id;
}
params = Ext.JSON.encode(params);
request = Ext.create('Ext.data.Request', {
params: params,
action: operation.action,
records: operation.records,
operation: operation,
url: operation.url
});
request.url = this.buildUrl(request);
operation.request = request;
return request;
}
});