Model View Controller (MVC) Question:

Tell me in other mvc systems, the rule is fat models, skinny controllers. ie the business logic goes in the models and all controllers do is load/save models and load/kill views. is this the extjs way?

MVC Interview Question
MVC Interview Question

Answer:

What MVC are you using? Views are for presenting the data from a Model. Model is just a representation of data. Controllers should be what controls you app like telling your view to display this model.


Previous QuestionNext Question
Suppose that if i want to open a contacts view, i should call contactsController.view(id), or what have you, which would then open the view for me. correct?What are the 3 main components of an ASP.NET MVC application?