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
16 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
62 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
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
18 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
30 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
15 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
49 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
21 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
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
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
27 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
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
1answer
24 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
30 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
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
2answers
65 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
73 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
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 ...
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
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
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. ...
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
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
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
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
...
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
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
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, ...
0
votes
0answers
40 views
viewController stays null while I try to set it as the dataSource for a view
I am trying to build a calculator with a graphing function, and I am using MVC designs.
So there are basically 2 MVC's
CalculatorViewController and its view and model
GraphViewController and its ...
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 ...
0
votes
1answer
12 views
Check for a field in the first table. If returned true the submit the form, if not then raise an error
Here is the first part of code in the Products#create action
@tmp = params[:product]
@tmp["items"] = @tmp["items"].split(',').map(&:strip)
@org = Product.new(@tmp)
@company = ...
0
votes
0answers
14 views
Manage 2 tables with 2 views in the same Joomla backend component
I'm new to Joomla! component developement, and just can't figure out how to do this..
Details:
In my component I should be able to manage two DB tables: Question(id_question, type, text) and each ...
0
votes
1answer
41 views
Correct way to use Model's method in codeIgniter's view?
From my VIEW, let's call it 'index', on a button click I would like to perform a DATABASE QUERY without loading the page again , however I cannot think of a method to so without breaking the MVC ...
1
vote
3answers
55 views
can I put all my classes in one file using mvc? [closed]
I am attempting to learn MVC, and I have what is probably a very basic question. When I am creating classes and objects, can I put all of those in one file like I do with JavaScript? Or do I need to ...
0
votes
2answers
26 views
Can rails controllers be inherited to a third level deep?
Can I have controllers in Rails that are 3 levels deep inheritance? One would think such a trivial thing is possible, but the concrete controller at the "third" level gives the generic/useless error ...
0
votes
2answers
24 views
.Net 4.0 and .Net 4.5
I am planning to develop a new mvc website with .Net Framework 4.5. But I have to do some maintenance work for an already existing mvc website which is built on Framework 4.0. Will there be problems ...
0
votes
0answers
15 views
Listen for when a picture is received/uploaded to a web server
As of right now I run an Apache Tomcat/7.0.39 web server and I'm using the MVC Framework (in Spring Tool Suite). I've written the controllers that I want to run when I receive a picture to the web ...
0
votes
1answer
20 views
Xcode iPad storyboard
So I'm looking at an iPad Objective-C Xcode project's source code and I am new to this and having trouble figuring out what's going on.
So I'm looking at the file MainStoryboard_ipad.storyboard which ...
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
1answer
26 views
Retriving data from form params is not possible in ruby on rails
In My Ruby on Rails Application
in my controller i have two action methods,first one is for load data and second one for saving data.
at first i wrote two different views for both action methods ...
0
votes
1answer
31 views
as3 MVC Using Arrays as Model Get/Set Variables
I am relatively familiar with the model-view-controller framework for actionscript 3. I have only used numbers and strings as variables in the model class. Now I am at a project that is basically an ...
1
vote
0answers
25 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
...
2
votes
0answers
42 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. ...
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, ...
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 ...


