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.

learn more… | top users | synonyms (1) | mvc jobs

0
votes
1answer
11 views

how to Bind dropdownList using Entity Framework in MVC 3

i want to show a dropdownList on a page using Entity Framework in my MVC app, but i am just stuck here to do this using using HTML Helper. so if anyone having knowledge of entity framework, help me... ...
0
votes
0answers
47 views

Proper technique when developing using MVC

I am starting to develop more using the Model-View-Controller method. I am trying to decide which is better when defining my requirements for data. Lets say in my model I create a function to ...
0
votes
1answer
14 views

Determine who call stateChanged

I have a few sliders that look like this: //Create the slider JSlider speedSlider = new JSlider(JSlider.VERTICAL, MIN_SPEED, MAX_SPEED, initValue); speedSlider.addChangeListener(controller); ...
1
vote
1answer
35 views

Ensure that web service handles exceptions and always returns a valid response

I am developing a web service, no matter what, the response should always be valid, and I mean valid as in a valid format. That means that if the web service is expected to return an XML matching a ...
-2
votes
0answers
33 views

Iphone MVC sharing graphics of model with view

I have read that the model and view must not be aware of one another and that the ViewController works as a sort of glue between them. However I cannot understand how to properly implement this, it ...
0
votes
1answer
22 views

F# MVC Json Result, on the client empty object after Ajax call

I have a F# mvc app, and I am trying to get ajax call into and endpoint that will return a list of people, which will then display in a table. type Person(credits:int, name:string, ...
0
votes
0answers
40 views

How to fix this js script to send a value by method post

I have This Java Script And I want to click ok and call detel method in my controller but its not working and I dont't know why im new in js I need to but 2 values in this submit id and name Also I ...
0
votes
0answers
6 views

Can't realize Navigation, Pages, scenes with MVC pattern in JavaFX

Navigation and pages aren't supported in JavaFx at my knowledge, I want to build an Application where the Views are different pages that have different Controllers, I want each page to be contained in ...
2
votes
2answers
21 views

render ActiveRecord response in from Controller to View

I'm new to Rails. I'm using Rails 3.2.13. I'll try to keep my question succinct: In my controller, I want to get the last 10 entries from the Observation table. I have: def index @times = ...
1
vote
0answers
32 views

How to make MVC3 application authenticate both Windows and Forms

I am developing an MVC3 application for a customer service team. I am using default login and registration controls in my application. I have to use both Form Authentication and Windows ...
1
vote
0answers
35 views

Backbone nested views

I'm working on a Backbone application and I'm not sure if the way what I'm trying to do is the correct way. I have an application view and inside that application view I'm trying to append a ...
0
votes
2answers
41 views

How to enter data in two tables at one time in spring mvc hibernate

Article class: @Entity @Table(name = "imei") public class Article { @Id //@GeneratedValue @Column(name = "imei1",nullable = false) private Long imeiNo; @Column(name = ...
0
votes
0answers
26 views

HibernateTemplate returning null

Hi! here I am trying to use hibernateTemplate in the dao layer, earlier I have working with sessionfactory for retrieving and it worked fine but now I need to implement hibernateTemplate, When I am ...
0
votes
1answer
15 views

Is it possible to save a variable in controller

I would like to save a variable in the controller to be able to use it for all methods so I declared 3 private strings public class BankAccountController : Controller { private string dateF, ...
0
votes
2answers
24 views

Game Design MVC - Controller Architecture

Reading an artile on gamasutra had me thinking of how should the controller in an MVC game be designed as: Option 1: The controller should act on the model, Eg: whenever a key is pressed ...
4
votes
2answers
60 views

In proper MVC, does everything have to be a model, view, or controller?

Something I have been wondering but somewhat too embarrassed to ask until now: In "proper" MVC (strictly adhering to the pattern), does everything have to be a model, view, or controller? If not, can ...
0
votes
0answers
22 views

“Not equal” named scope in rails with Mongoid

I have two models Content and ContentType. In Content model I can do: def get_all_content_except_poking_message Content.all.where(:name.ne => "no forking, just poking") end Now, I am trying to ...
0
votes
1answer
12 views

WARNING: No mapping for springapp1 welcome.htm in DispatcherServlet with name springapp1

I have created a simple jsp page which is being retrieved by the controller. But when I retreive this url localhost:8080/springapp1/welcome.htm, I am getting the following error in tomcat: I am ...
0
votes
1answer
23 views

Steps to convert a new xcode cocoa project using 1 controller per nib

I want to start off my new xcode project using 1 nib per controller. By default it seems xcode creates: 1. delegate .h/.m 2. MainMenu.xib And looking at the targets for the project, I see that the ...
0
votes
0answers
39 views

SPA based on liferay&JSF - without MV*-Framework, only jquery?

I'm worrying my brain about a project, that seriously keeps me from sleeping. SCROLL DOWN TO THE QUESTIONS IF YOU WANT - NEXT PART IS JUST FOR CLARIFICATION I am working as Frontend-Developer, and ...
1
vote
1answer
37 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 ...
-2
votes
1answer
68 views

Is my MVC approach in JavaScript correct? [closed]

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
18 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
27 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
34 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
25 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
57 views

Differences between MVC pattern and other 2 patterns [closed]

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
47 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
0answers
41 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
10 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
30 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
3answers
36 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
29 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
0answers
23 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
1answer
29 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
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
21 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 ...
0
votes
3answers
79 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 ...
0
votes
1answer
21 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 ...
4
votes
1answer
33 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
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 ...
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 ...
1
vote
2answers
30 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. ...
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 ...
6
votes
5answers
158 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
0answers
34 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
22 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 ...
0
votes
0answers
26 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
2answers
41 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
19 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. ...

1 2 3 4 5 250