Ivan
Ivan

Reputation: 872

ExtJS4, How to prevent sending request every time user type text

I have simple combo with remote store. pagination, triggerAction doesn't matter for me. All I need is disable sending request everytime I type smth in combo. enter image description here

Even when I have triggerAction: 'all' request are being sent. How can I disable it? I need to load store just one time. Please help me!

Upvotes: 0

Views: 110

Answers (1)

Evan Trimboli
Evan Trimboli

Reputation: 30092

Set queryMode: 'local'.

Docs here.

Upvotes: 1

Related Questions