-3

I don't understand what is it. Please give me a simple explanation.

What is the store in MVC in ExtJS 4?

tereško
  • 58,060
  • 25
  • 98
  • 150
Serge Almazov
  • 396
  • 3
  • 11
  • 1
    In the future, please apply some research effort before asking a question. This is covered fully in basic ExtJS documentation. – egerardus Aug 23 '12 at 16:33

2 Answers2

1

Did you look into Ext's documentation?

The Store class encapsulates a client side cache of Model objects.

(if a model is a row the store is a table...)

CD..
  • 72,281
  • 25
  • 154
  • 163
0

What CD says is true. A store is used to connect data to Grids, Comboboxes, Treegrids, ... It stores the Models.

Johan Haest
  • 4,391
  • 28
  • 37