Let's assume that I have 2 tables in my database, a user table and a folder table. They are matched by two models (beans) in my backend java code and similarly by to models in my extjs client side. Using viewmodel architecture, I want to create a form
that shows the username
and the amount of folders they have created using viewmodel bindings. Each folder in the database has a CREATE_USER_ID
field that contains the id of the user that created the folder. How do I go about loading the required data?
Best practice for loading non model data in ExtJS
332 Views Asked by PentaKon At
1
Viewmodels are not designed to load data directly (and not designed to load non model data at all). You've got two options:
folder_amount
field to your client side user model. On the server side this does not necessarily need to be added as well as you can adjust your API feeding data to client to add that field dynamically.