2

クエリで 200 を超える要素を取得しようとしています。そのため、このドキュメントに従って、クエリが返す必要がある結果の制限を変更しましたが、これは機能していません。何か案が?

私は次のことを試しています:

var tasksWithActualsQuery = Ext.create('Rally.data.WsapiDataStore', 
{
    model: 'Task',
    limit: Infinity,
    fetch: ['CreationDate', 'Actuals'],
    filters: 
    [     
        {
            property: 'CreationDate',
            operator: '<',
            value: 'LastMonth'
        }
    ]
});

tasksWithActualsQuery.load({
    callback: function(records, operation) 
    {
        if(operation.wasSuccessful()) 
        {
            var tasksWithActualsCount = 0;

            Ext.Array.each(records, function(record) {
                if (record.get('Actuals') != null)
                {
                    tasksWithActualsCount++;
                }
            });

            var tasksCount = records.length;
            alert(tasksCount);
        }
    }
});                
4

1 に答える 1