Model–View–Controller (MVC) is an architectural pattern used in software engineering. Use the more specific [asp.net-mvc] tag (ASP.NET MVC) instead, if applicable.
0
votes
0answers
7 views
ChicagoBoss doesn't seem to be saving the right values into MongoDB
So I've worked my way through an evening with ChicagoBoss. I am now currently trying to wire up ChicagoBoss with MongoDB to build an app with it (and learn two new technologies I've been eyeing in the ...
-1
votes
1answer
60 views
Is my MVC approach in JavaScript correct?
I am from java background and worked occasionally in JavaScript as well at work. Just last month started upgrading to JavaScript. Just before trying my hand in a JS project just want to check whether ...
1
vote
1answer
17 views
Partial View MVC Jquery Not Working
I have a table. Which I am returning a list of rows, and in one of the rows I have a button. This button has a class called 'password'. I am attaching a click event to this class. Every time the user ...
0
votes
1answer
17 views
Show/Hide page parts based on own/foreign profile
I am building a social network and I can not figure out the best way to solve this problem:
E.g. for profile page - what is the best way to show/hide different parts of profile page based on ...
0
votes
2answers
28 views
Change item displayed in view using jQuery and value selected in dropdownlist
In my view I have this dropdownlist:
Filter by: <select name="orderType" id="orderType">
<option value="All">All</option>
<option ...
1
vote
1answer
14 views
FullCalendar Control MVC jQuery - Multiple Calendars are being created
I am looking to implement the FullCalendar control provided by Adam Shaw and have been able to set my defaults and load it with events using JSONResult in my MVC control.
I have a DropDownList that ...
-1
votes
1answer
43 views
Differences between MVC pattern and other 2 patterns
Can you tell me if it is Factory, Strategy or MVC design pattern?
public interface MainObject<T>
{
void add();
T get();
}
class Person1 : MainObject<Person1>
{
public ...
0
votes
1answer
46 views
Using mvc for some parts of a project - design issues [closed]
This is the folder structure (cc - project name):
Project: CMS, based on wordpress
MVC is being used if there are class and views folders.
I need MVC to use routing easily and for all these ...
0
votes
2answers
74 views
How to select a selected value when you have a list stored in ViewData[“country”] in C' MVC
I have list stored in ViewData["country"] and I want to list this but also have a selected value.
I currently have
@Html.DropDownList("ddlCountry", ...
1
vote
3answers
115 views
Internal redirect for POST in Play apps?
I'm using Play Framework 2.0.3 and would like to add a filter that will internally re-route certain requests (that is, without a 301/302) to a URL in the app that is determined dynamically. That is, ...
0
votes
0answers
18 views
How to “Split” Zend Framework 2 MVC application to different servers?
Is it possible to split an ZF2 MVC application to different servers? I to put the controller an model on a "backend" server an keep the view on a public webserver.
Does anybody has some experience or ...
0
votes
1answer
9 views
What is pd in opencart model files?
I am trying to get a better grasp of Opencart's model files but pd. and p. and c. baffles me. Can someone explain what are they and how to interpret them.
Thanks.
-3
votes
1answer
29 views
Browser doesn't include parameter when clicking on hyperlink [closed]
I have a hyperlink like this in my mvc site: https://www.somesite.com/folder/parameter
When clicked, a new window should open and the address bar should say ...
0
votes
2answers
64 views
Error when counting query array in MVC3
What I'm trying to do is emulate a random token that is going to be sent from another system through the url. This other system will also insert 3 values in the database:
ID
IP
Current time
Now ...
0
votes
3answers
33 views
Is it possible to make Razor sections optional?
If I have a page with:
<body>
@section SomeStuff {
<span>This is a section I just addered</span>
}
</body>
Is it possible for the layout to not render this ...
1
vote
1answer
26 views
$digest already running - AngularJS
I want to "refresh" my view after some new data is loaded into my factory, but i cant figure out how to do this correctly.
$http.post(url, postKunde).success(function(data, status) {
...
0
votes
1answer
23 views
Splitting a View into several files in Swing MVC
My project follows the MVC pattern. To make it quick, I will only post the code relevant to my problem (which doesn't involve the Model). Explanations below.
Controller.java :
public class ...
0
votes
0answers
18 views
Kendo grid with dropdown edit values show object properties
I have a Kendo grid with a Employee dropdown column, much like the examples that they provide. My dataset has a employee ID. I created a model that holds the employee object and deliver that to my ...
0
votes
0answers
28 views
Get json object created in mvc (jsonResult) in android
I created a json result in mvc and I'm building an Android app to get the json result. This is what my json result looks like
{"name":"Mr. Spock","gender":"Male"}
This is my controller
public ...
0
votes
0answers
13 views
Automated SMS and Email
We have a built an online course booking system using MVC Entity framework and SQL Server. The system sends emails out using an SMTP service and SMS using another service from textanywhere.net.
Now ...
0
votes
0answers
20 views
What is the best way to handle 404 and other application Exception in MVC 4.0
What is the best way to handle 404 and other application Exception in MVC 4.0.
Should i create a custome controller and view to manage the exceptions or only enable the custom error on in web config ...
2
votes
5answers
6k views
Spring MVC - include static files / javascript , css
I have created MVC application.
I want to include js or css file into jsp.
My static files ar under:
- webapp
-js/jquery.js
-WEB-INF|
|
- jsp/*.jsp
...
0
votes
0answers
411 views
How to deploy spring mvc application in jboss server?
I am implementing a Spring MVC application using JBoss application server.
I am getting the following exceptions when i run the application during JBoss server start up.
Where as it's working fine in ...
6
votes
5answers
149 views
Understanding MVC Views in PHP
I have to seem problems grasping the concept of Views in MVC, they are, according to what I've read, the layer that manages the presentation in the aplication, but many of the material I've been ...
0
votes
2answers
38 views
Save a static copy of a model in AngularJS
Now i have something like this, in the view :
<input ng-model="kunde" type="text">
and a controller trying to save the model to a factory :
$scope.setKunde ($scope.kunde) {
...
0
votes
1answer
17 views
Sending monthly emails automatically using mvcmailer
In my MVC application, I have this scenario. At the 25th of every month, certain users has to be fetched from the database and an email should be sent to them as alert. I am currently using mvcmailer ...
0
votes
3answers
71 views
Understanding application logic in MVC
In my effort to understand MVC in a simple way (I'm trying to make a demo application of my own), I've followed Symfony2's Symfony2 versus Flat PHP material, I've changed some stuff along the way ...
1
vote
1answer
32 views
JQuery tabs, on tab select trigger event
I'm new with JQuery and I'm trying to make a tab select that triggers an event, this is the code that I created. But when I clicked on the tab that I want the event to trigger, the event do not ...
1
vote
1answer
25 views
Work flow in MVC models?
I'm looking at the ruby gem workflow: https://github.com/geekq/workflow
The examples and other examples on the web have the workflow code in the model itself. I believe this is a violation of SOLID. ...
4
votes
1answer
32 views
RequestMethod POST and GET in the same Controller?
First of all, here is my Controller:
@RequestMapping(value = "/esta", method = RequestMethod.POST)
public String handleRequest(HttpServletRequest request) {
Esta estaobject = new Esta();
// ...
0
votes
0answers
32 views
Is it wise to disconnect the UI layer from the backend in mobile web apps? [closed]
What's the future when it comes to mobile web development?
I mean, traditionally, in the java world, we make use of Java EE technologies such as Spring, Hibernate and some MVC framework like Spring ...
0
votes
1answer
12 views
How to create a search page and function in basic web app
I have a fairly simple MVC webapp connected to a database. The user needs a search page that will pull certain records from a single table. The user can give 1 or more keywords. The search function ...
0
votes
1answer
18 views
Passing a model method's output to its controller
I've defined this method in my Track model
def random_number
max = Article.maximum(:id)
id = rand(1..max)
return id
end
and am trying to pass it to the Tracks controller to render ...
4
votes
4answers
968 views
Php design patterns
Ok, i'd like to firstly make you notice that i have looked for "php mvc design patterns" and so and i haven't really found what i was looking for; still now, writing my question, i cannot find any ...
0
votes
2answers
62 views
Are all MVC models lightweight?
So I was first introduced to the idea of a model when I learned WPF. The MVVM concept of a model seems to be more aligned to general 'business logic' encased in a class/set of classes. When I look at ...
2
votes
3answers
91 views
Good MVC design for calling a method by many classes
EDIT (16.05.2013):
I will use my third solution. Thanks everybody for help.
END OF EDIT (16.05.2013)
I have a View (inside a Controller) with an update method. The method has to be called by many ...
0
votes
1answer
16 views
inline jquery in joomlas 3 view
How do I add an inline jquery javascript to components view in joomla 3. If I add it like <script>my javascript mixed with <?php echo $myvariable ?></script> is causing blank page ...
2
votes
1answer
264 views
Where to locate methods used by multiple Rails controllers & restricting access to the base controller
I have two controllers (say ArticlesController and PostsController) that use about 5 of the same methods. These are the only two controllers that use the 5 methods, so they don't feel like they ...
1
vote
2answers
72 views
MVC4 WebApi: Route to different actions based on json value
I would like to route requests to different actions based on the value of a particular json parameter.
For example, given the following json data:
{
type: "type1",
type1data: "type1value"
}
...
1
vote
1answer
59 views
rails dynamically generate a form
I'm pretty new to the whole rails MVC concept, and I've been tasked with creating a form which does the following:
takes a test number
shows how many sections there are per test (this is a ...
16
votes
6answers
3k views
MVC (model-view-controller) - can it be explained in simple terms?
I need to explain to a not-very-technical manager the MVC (model-view-controller) concept and ran into trouble. The problem is that the explanation needs to be on a "your grandma will get it" level - ...
14
votes
7answers
72k views
ASP.NET MVC - Html.DropDownList - Value not set via ViewData.Model
Have just started playing with ASP.NET MVC and have stumbled over the following situation. It feels a lot like a bug but if its not, an explanation would be appreciated :)
The View contains pretty ...
0
votes
4answers
49 views
Adding HttpPost getting error 'The Resource Cannot Be Found' in MVC
I'm getting the error
Server Error in '/' Application.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, ...
0
votes
1answer
20 views
Mvc, php, symfony 1.4: formatting datas for view, where to put?
Lets imagine this architecture:
model: get record and joined records
controller: iterating through all the records, and doing some calculations, statistics calculations even formatting dates etc
...
6
votes
3answers
3k views
Can a backbone view have more than one collection?
I am just starting out with backbone and am trying to set up a view which has a question list. To the left of the list I have four filters, to filter the list by language, country, status, and study. ...
0
votes
3answers
30 views
Multiple views for the same form in a web application
I have a situation where I have several ways to perform the same activity in my php web app.
There is the "Manage Widgets" section of the app which has a form for creating new widgets and a list of ...
0
votes
1answer
31 views
asp.net mvc 3 dependency injection ninject
I want to ask something about asp.net mvc 3 dependency injection ninject.
Here is my Interface,
public interface IRegistration<T>
{
bool Registration(T Entity);
}
This is ClsMembers ...
0
votes
0answers
25 views
Session variables disappearing in Joomla component when I switch views
I am currently building a custom Joomla component which is basically a user form which makes SOAP requests at various points.
I have a view which makes an AJAX request to the controller, which then ...
0
votes
1answer
17 views
How to display multiple mongoose search results in expressjs
I'm working to create an MVC on top of expressjs, in order to learn express. I am having trouble between the model and view. The Git repo exists here.
I would like to display a list of blog posts. ...
0
votes
1answer
29 views
Where should I put these fields in the MVC model?
Let's say I have three classes: JPSModel, JPSView extends JPanel, and JPSController. JPSView overrides paintComponent(), which draws an image at a certain zoomFactor at position (renderPositionX, ...




