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

6
votes
0answers
436 views

FLOW3 action parameters and arrays of objects

FLOW3 provides a convenient way to pass objects by ID in the URL, and get them automatically instantiated in the controller action's parameters: class PostController extends ...
5
votes
0answers
54 views

Is it a best practice to separate logic from presentation more?

This should be a fairly simple question, but I can't seem to find a good answer on the internet. I've been looking into Java FX and i find it interesting, although I'm having troubles being content ...
5
votes
0answers
818 views

Many-to-Many Relationship

I have been trying to "manufacture" a many-to-many relation module between content items in Orchard. Unfortunately, with no success. But then I got an idea of how to simulate such a relationship WITH ...
4
votes
0answers
1k views

asp.net MVC 2 - View Model / Model Validation - Is there a way to map validation attributes from model to ViewModel via AutoMapper?

A short while ago I'm sure I read that is was possible to use AutoMapper to map the validation attributes from the domain model to the view model, i can't find that post any more though! Has anybody ...
3
votes
0answers
53 views

mvc validation message - correct localized on localhost, english on server

on my dev pc the message are shown correctly in dutch. but on the server, all the validaton messages are english ??? to be sure the current culture is 'forced' correctly, i've placed this in my ...
3
votes
0answers
361 views

LocalValidatorFactoryBean causing Spring MVC Internal Server Error

I am using JSR-303 bean validation in a Spring MVC project. Everything works fine when I have a JSR-303 provider on the classpath, and leave all other validation settings in their default modes. I'd ...
3
votes
0answers
945 views

How can I set a custom PropertyEditorSupport.setAsText(String) for spring's form select list?

I have a spring form. The form contains a select list that is bound to an enum type. I have also added a "choose" option to the select list that isn't represented in the enum. I have seen some ...
2
votes
0answers
61 views

ExtJS and Complex Save Operations

ExtJS 4.1 Given the overall disappointing functionality of saving association-heavy models, I have all but ditched model associations in my application and rely retrieving associated data myself. ...
2
votes
0answers
14 views

Different Log on screens depending on area - MVC3

I have an area that is a mobile layout. I then also have controllers in my route that just uses a normal website layout. The problem is when i use [Authorize(Roles = "ROLENAME")] and the user isn't ...
2
votes
0answers
45 views

Symfony 1.2 - return sfView::ERROR redirects to SUCCESS

I use Symfony to write my code for about two years, but this is the first time I'm trying to use return sfView::ERROR feature. The problem is, it doesn't work. Even if my controller looks like: ...
2
votes
0answers
79 views

MS Word 2010 Could not open macro storage

I am creating Word Document Using Word Template Following is code Word.Document wordDoc = new Word.Document(); wordDoc = wordApp.Documents.Add(ref oTemplatePath, ref oMissing, ref oMissing, ref ...
2
votes
0answers
60 views

How to use HTML5 cache with MVC applications?

I'm having a problem trying to do something that should be very simple ( show an offline page when the user does not have Internet access). I have an MVC application that loads on my address ...
2
votes
0answers
39 views

nested attributes without activerecord

I am trying to create an invoicing system that does not persist to a database, but passes through to a third party system. Hence, my models are not ActiveRecord as there is no table to persist to. How ...
2
votes
0answers
135 views

DropDownList Column in Telerik MVC Grid

I have the following Grid Definition where the PreRemStatus column is not working properly with the ClientTemplate. Is there another way I can accomplish adding a DropDownList Column in the Grid? ...
2
votes
0answers
203 views

how to include spring RESTful service to my existing Struts2.0 project

I was trying to implement spring RESTful service to my existing struts project, but not able to complete the same.i added spring rest service but when I tried to run my existing application,it does ...
2
votes
0answers
45 views

In MVC parlance, how do you “notify” a grandparent component of a model's change?

There are a lot of examples about how to setup a JTable and its associated model, but I'm wondering how to go about letting a the JFrame "controller" know that a JTable's model is completely loaded. ...
2
votes
0answers
126 views

Dojo toolkit, Binding & partial view (using contentpane)

I've got problem with ContentPane & Binding. I've got two solution with different structure. My first solution file system : - Home.html - MyModule.html - MyView.html Home.html contain ...
2
votes
0answers
297 views

Telerik mvc grid Ipad issue

I am working in an MVC 3.0 application. In my project I used Telerk mvc grid for data listing. I made grid edit mode as "InCell". In my grid, there are two columns "Facts" & "Actions". When I ...
2
votes
0answers
264 views

YUI 3.5 App Framework server routing

I am currently looking at implementing YUI 3.5 pr1 (and then the final version when released) in a fairly large application. The backend is built with PHP and MySQL using a MVC structure with a front ...
2
votes
0answers
496 views

Android MVC: Sending Messages to the Controller

As shown in this blog Mind The Robot, the author suggests the controller gets it's messages from the View through a handler like so: inboxHandlerThread = new HandlerThread("Controller Inbox"); // ...
2
votes
0answers
230 views

JavascriptMVC and RubyOnRail integration

I saw one question related to folder structure on JMVC and ROR. My question is different. I am new to both and I want to know how to integrate JMVC created files with RubyOnRail created files. Think ...
1
vote
0answers
51 views

Return 2 Json results from a single action result in Asp.Net C# MVC4

I am using datatables and charts. I would prefer to return standard data through the model but cant for some odd reason, and the controls only seem to work with Json. Perhaps it's just my ...
1
vote
0answers
39 views

Add an object to database by Ajax and Spring MVC

I follow this Link and i want to insert a user to database and then get the succes massage. My code insert successfuly the object to database but i get an error : ...
1
vote
0answers
40 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
32 views

MVC URL RedirectToAction URl has variable and its parameter in Url

I am Redirecting my Action to another urls woth optional parameter and passing variable to the controller RedirectToAction("action", new { a, c, s,ds}); but my urls loosk like this ...
1
vote
0answers
33 views

how call a outlook function in outlook htmlbody by clicking on hyperlink in outlook addin application

how to call CreateOutlookContacts function on click on activation link .. outlook function code is given below mailItem.HTMLBody = " Hi, Welcome in Constacts World.... Please click on below link ...
1
vote
0answers
35 views

Can I create models.py Models that load data from the file system (NOT from a database)?

We have a test tool that produces test results following a directory structure like follows: test-results/${TEST-ID}/exec_${YYYYMMDD}_${HHMMSS}/ Inside each exec folder, there are several files ...
1
vote
0answers
40 views

Share Users data to the Clients using dot net OAuth - MVC3/4 C#

I have a website, which contains huge user information. I would like to share these users information using OAuth to third parties users/websites. I found some of the questions related to my ...
1
vote
0answers
33 views

MVC3 Razor dynamic form creation and validation

I have setup a page on my website where admin staff can create a competition and add any number of fields for certains types and they can be set to required or not to this competition. When the ...
1
vote
0answers
45 views

Three.js and MVC

In three.js I've created a basic 'hero creation' program. Similar to Elder Scrolls swapping through heads,body etc to create a full character. I'd like to make it more interactive by letting other ...
1
vote
0answers
60 views

extjs 4 association has many nested json

I have a form where there are several textfield and a grid. I would like to load all together at once. but I can not. In my controller i have this method for receive data from server: ...
1
vote
0answers
8 views

how to check session is no longer active on partial view in mvc

function EditSourcePartailView(ID, StepID, StepAction, Action) { $.ajax({ url: "/Publication/NewEditDataSource" + "?StepID=" + StepID + "&ID=" + ID + "&ActionType=" + StepAction, ...
1
vote
0answers
60 views

How to save Shipping Method in Magento

I am trying to save Free Shipping method with the order save by the following way: $checkout = Mage::getSingleton('checkout/type_onepage'); $checkout->initCheckout(); ...
1
vote
0answers
83 views

C# Linq To Excel Getting Table Data Not Starting In The First Row

I'm developing a MVC 4 web application and one of the requirements is to allow users to upload an excel file which is in a standard format and extract data and save that to a database. I have used ...
1
vote
0answers
31 views

MVC: Show any exceptions thrown on the 'Error' page

I would like to edit my 'Error' page so that whenever an error is thrown it displays the reason why. Instead of the default: Error. An error occurred while processing your request. It would say ...
1
vote
0answers
121 views

How to bind AngularJS Calendar to a REST resource using MVP

I’m failing to implement the binding between my REST resource and the AngluarJS calendar control. It seems that I’m missing something or just don’t get it logically since all components are working as ...
1
vote
0answers
62 views

MVC\MVP frameworks for WinForms

Are there any MVC\MVP alived frameworks for WinForms? As I understand MVC# is dead. http://www.mvcsharp.org/
1
vote
0answers
156 views

ASP.NET MVC 4 SPA how to remove redirect to the login page?

We are working with SPA (MVC 4 + angularjs) site and we want to deny access for static files for unauthorized visitors. Currently all requests to this static files ended up with redirect to the login ...
1
vote
0answers
212 views

AngularJS Binding to WebGL / Canvas

I'm very green to AngularJS. I'm wondering if it's possible to use it when your view is using HTML5 Canvas or WebGL? If so, are there any good tutorials on how you go about this? I've seen several ...
1
vote
0answers
106 views

How to init parameters before @PostConstructor called in managed bean

I'm trying to init property before the JSF @PostConstruvtor is called with respect to MVC. This is my Java code: @ManagedBean public abstract class FooController { protected <type> prop; ...
1
vote
0answers
133 views

JSP dropdowns populated from database

So actually 2 questions in here. First off, on my page users click a button to add a new entry which directs them to a JSP form. They fill in some information via text boxes and then there are drop ...
1
vote
0answers
48 views

How to change the number of specifiers with count of providing array in php

My code is given bellow Controller code: class statController extends baseController { public function index() { $this->registry->template->projectsWise = ...
1
vote
0answers
121 views

Not able to get a Database instance inside a Model class

Does a class' __construct() method need to be public, in order to call a static method of this class inside of another class? I'm trying to get a Database instance inside my Model class (MVC app), by ...
1
vote
0answers
88 views

Client Side MVC (javascript) against Oauth server - confused

we are about to code a client side mvc app in javascript (angularjs). on the server side we ha ve node.js running to serve the templates etc.. i am new the "front end" side of the story - i am ...
1
vote
0answers
12 views

Null value passed in Safari to server

We have a C#.NET MVC 4 application with MVVM on the client side. When performing a particular action in the application the parameters in the client that are going to be passed to the webAPI are OK ...
1
vote
0answers
39 views

When I check out a MVC Project that Uses EDMX I have to Hit Ctrl + S to update the model How Do i get around this when doing an automated Build

When I check out a MVC Project that Uses EDMX I have to Hit Ctrl + S to update the model before I Can build. Otherwise I get a lot of build erros. How Do i get around this when doing an automated ...
1
vote
0answers
59 views

Using function pointers and dependency injection to assign callback functions to objects. Is this good design?

I am developing an MVC application. In this case the model classes are numerous, but there is only a single 'view' implementation. I need some way for the model classes to call the printOutput(string) ...
1
vote
0answers
122 views

Add ActionListener to swixml in controller (MVC) not working

Hi I have problem with swixml in Java. I need to create simple application but in MVC as application have few forms. Unfortunately, trying to add ActionListener to view button in controller the end ...
1
vote
0answers
313 views

Spring MVC and Security - Error 404 page not found after login

I need some help with this Spring test project. I have a simple log in page with security check, Spring detect good or bed login but gives 404 Page not fount error when redirect into login-succes page ...
1
vote
0answers
26 views

android simulator does not recognize .mobile.cshtml page

I have different views for desktop and mobile browsers, and for that I have created seperate _Layout.mobile.cshtml, and [_ViewName].mobile.cshtml views. The problem is that when I run the application ...

1 2 3 4 5 48