s.webbandit
s.webbandit

Reputation: 17028

How to get last load params from Ext.Store

To load store data I use:

this.getTestStore().load({
    params: {
        item_id: record.get('id')
    }
});

How to obtain last load params ({ item_id: record.get('id') }) from this store in the future?

Upvotes: 1

Views: 1979

Answers (1)

Matt Kim
Matt Kim

Reputation: 747

From your store:

store.lastOptions.params

Upvotes: 3

Related Questions