Tagged Questions

14
votes
6answers
786 views

What Alternatives Are There to Model-View-Controller?

While going through university and from following the development of SO, I've heard a lot about the Model-View-Controller architectural design pattern. I inadvertently used the MVC pattern even before …
5
votes
12answers
425 views

In english, what really is model-view-controller?

I develop in php and all the tutorials or pages such as wikipedia that I see don't really explain what mvc really is. In my understanding so far mvc is a file structure which includes your classes, …
5
votes
5answers
630 views

Implementing Model-View-Controller the right way

Working on a game in Objective-C/Cocoa for OS X, and I finished the prototype as much as it's worth being finished. It's a mess of code, being my first game, but everything works. I've been reading up …
4
votes
6answers
137 views

What is an MVC framework and why is it necessary/useful?

I know that an MVC framework allows you to separate business logic, data base access and presentation, but why do we need a framework to do this. Can't we just keep our classes separated, perhaps …
3
votes
3answers
211 views

Is it bad practice to put view code in the controller?

In MVC (such as JSP and Spring), is it bad practice to view related code in the controller? In my case, the controller does some work and then hands off the results to the view (JSP). In the case of …
3
votes
4answers
299 views

MVC: Can a view loop through query results?

I'm new to MVC. You have been warned... I have User model that can return a MySQL result resource to a controller. The controller passes the MySQL resource over to the view to display. Is it …
3
votes
2answers
128 views

tips to avoid synchronisation issues in multiplayer and replays using MVC pattern

Hi, just wondering what tips people have for avoiding game synchronisation issues in multiplayer games and replays recorded off of game logic using the model in a model view controller pattern so …
3
votes
4answers
818 views

Looking for clean WinForms MVC tutorial for C#

How to create a rich user interface Windows application, example Photo Shop. I am looking for clean MVC tutorial for WinForms with C# somewhere. (Not ASP.NET MVC.) Being new on the Windows Platform; …
3
votes
3answers
218 views

Is this MVC? What ‘design pattern’ have I used?

There's a lot of confusion over MVC but after flicking through a Head First patterns book (As a side note I hate that brand, though this example was quite good) it claims that MVC or Model View …
2
votes
2answers
54 views

Universal template/config syntax

I have a number of applications written in different languages (Java, JavaScript, PHP, etc.). Their view/presentation layers display things in various formats: HTML, plain text, etc. I want to …
2
votes
2answers
205 views

How to efficiently select a subset of rows of a QTableView that match certain criteria?

I have a QTableView using a QSqlTableModel. In the underlying database (postgresql) table there is a timestamp column. How can I select all rows in the selection model where the underlying timestamp …
2
votes
3answers
87 views

Is there any dependency between view and a model ?

Normally in the MVC Pattern, when a user clicks on a page the request would be sent ,then controller would handle the request ,then process it using the model and route it to the appropriate view. I …
2
votes
2answers
216 views

Creating alternative login to Google Users for Google app engine

How does one handle logging in and out/creating users, without using Google Users? I'd like a few more options then just email and password. Is it just a case of making a user model with the fields I …
2
votes
3answers
477 views

ASP.NET MVC C#: Bringing in data from multiple tables/queries into a view

Ok, I'm still getting the hang of asp.net and the MVC framework and converting my knowledge over from classic ASP and VB - so please be gentle. I've got my first view (/home/details/X) functioning …
2
votes
5answers
345 views

Does the DataMapper pattern break MVC?

I have been reading up on multiple PHP frameworks, especially the Zend Framework but I am getting confused about the proper way to go forward. Zend Framework does not use ActiveRecords but instead …

1 2 3 4 5 6 next
15 30 50 per page