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
21 views
Spring AbstractPdfView - change the response so it has a file name rather than the request path
I have a controller that returns a view that overrides AbstractPdfView. Works great except for the fact when the user goes to save the PDF form the browser it tries to save a the request path (seems ...
0
votes
1answer
60 views
MVC Bootstrap typeahead HtmlHelper
I'm fairly new with MVC and working on a MVC4 website with Twitter's Bootstrap and we need a HtmlHelper for TypeAhead.
I obtained code for a HtmlHelper for Twitter's Bootstrap here:
public static ...
1
vote
1answer
67 views
MVC4 authentication & authorization for custom database
first of all I wanna say that I know there are many topics about this and I'm also searching the web to understand the whole concept that mvc deals with the security and keeping user information etc, ...
0
votes
2answers
44 views
jqGrid GET and POST mtype in MVC
I just read that the mtype option in the jqGrid will determine how we will do the ajax call. GET will retrieve data and POST will send data.
When i load my jqGrid, i want to pass an extra parameter ...
1
vote
1answer
66 views
How to send html - css email in MVC 4?
In my website, I need to send a data table to the client via email. I want the table in a good format. I've heard that inline style doesn't work on Outlook so I think about CSS.
I have no idea about ...
0
votes
1answer
33 views
MVC Retreive and Send Data - Money Conversion
I am pretty new and I am trying to do a conversion using Google API. However I am getting and Index was out of range error and the form collection is not collecting the data as I want (amount, ...
-2
votes
0answers
33 views
Implementing Smarty in MVC [closed]
I build my own framework with MVC pattern, and my idea is to use Smarty template without any other templating system.
My idea is to make template class who will extend Smarty and in constructor ...
0
votes
2answers
29 views
MVC Form generating unwanted code in presnetation
Whenever I use (@Html.BeginForm()) such as in this example below:
@using (Html.BeginForm())
{
@Html.DropDownList("test", Model.Select(p => new SelectListItem{ Text = p.Name, Value = p.ID}))
}
...
0
votes
2answers
39 views
Spring MVC 3.0 handling data
I'm learning Spring MVC 3 and I'm stuck on I guess a simple issue. I have a View calculator that takes 2 integers in a form. These are passed into my form pojo. My Controller adds and then prints to ...
1
vote
3answers
38 views
How does MVC/MVP work in a Swing app?
I have been asked to revamp an existing JDialog that is a child container of an in-house Swing app. I will be re-writing the dialog from scratch and have been asked to lead the charge towards making ...
1
vote
0answers
45 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();
...
0
votes
2answers
59 views
How to name my packages
I worked with object oriented programming for a while now and I also used packages a few times.
But I really wonder if there is an easy way to choose the package names? I know the MVC-Pattern, which ...
0
votes
1answer
54 views
use one action of controller into another action
I want to use one action into another action for getting some values as:
[HttpPost]
public ActionResult Playlist(PageInfo p, long ID)
{
//long ...
0
votes
0answers
44 views
How to get control from servlet after generating jasper report
I have exported the pdf file using Spring MVC with jasper report concept. I need to display progress bar When I click on export button until save pop up will come out on browser. Again I need to close ...
0
votes
0answers
14 views
How to access java script in parent page from partial page asynchronously using Ajax
I have been coding for a number of years but I am new to mvc. My problem is I am trying to render a partial page asynchronously using Ajax. But I need to run the java script in the parent page.
my ...
0
votes
2answers
43 views
iOS: Updating text labels with NSUserDefault data on different views
I have a text label on view 1 and a button. If I click the button, I am brought to view 2 through a modal connection. In this view, I enter a number and press a button. The button saves the number to ...
0
votes
0answers
34 views
Ember dynamic MVC and templates
I am learning Ember.js 1.0.0-rc.3 and I would like to know the proper way to create a "dynamic MVC" app. What I mean by "Dynamic MVC" is that the only content I have when hitting the index page is a ...
2
votes
4answers
89 views
Where is the most appropriate place to create a session in an MVC architecture?
I am developing a PHP application just as an exercise, and I was wondering where the session creation would be more correct.
I receive the login data in a controller, then I ask my model if that ...
0
votes
1answer
29 views
MVC Project Can Not Be Found on Android Browser
I have an MVC mobile website hosted on IIS, deployed and running just fine inside of a corporate network. The issue I am having is that this site "can't be found" on android mobile devices. iOS seems ...
2
votes
1answer
51 views
Prevent Ajax Form Submission Without Content
I'm trying to get some client side validation working to prevent a form submission occurring if an object has no value. I've been plugging away at this for a while now but cannot get a satisfactory ...
1
vote
2answers
93 views
AngularJS - How to run controllers from other controllers?
I'm new to angular, coming from a jquery way of thinking. I've read through most of the main site and bits of others, and I'm trying to further learn by building a customizable dashboard application.
...
2
votes
2answers
38 views
When frame is removed from DOM, does JS that was running inside gets cleared from memory?
I have the 1 page app where the UI is handled on the main page, and the controllers and models are loaded in the invisible frame. At some point, those models and controllers should change, so I remove ...
0
votes
1answer
54 views
Regex pattern where matches img tags
Using MVC, look at this example where we have the following HTML code:
<p>Duma</p><img url='..' /><p>Duma</p>
I would like that print only the content of the tags, as:
...
0
votes
1answer
74 views
Data validation not working in view (DataAnnotations)
I'm having trouble getting data validation working in my view.
I believe 'AssetName' should show an error message if a user tabs into the textbox and doesn't put any data in but no message is shown ...
-1
votes
1answer
149 views
Returning JSON with web api controller MVC
I am trying to convert a regular old controller I was using to an API controller and am having a little bit of difficulty. What these series of functions do is, in the jQuery, it iterates over a file ...
0
votes
1answer
59 views
MVC 4, JQuery 1.9.1, jTable - Uncaught TypeError: Object [object Object] has no method 'jtable'
The Network tab in chrome shows that jquery, jquery-ui, and jtable all load (in that order).
The exception (see title) occurs at the following line:
$('#containerDiv').jtable({
0
votes
1answer
68 views
Dealing with repeating controls in MVC
I have a controller that passes a Dictionary<role, List<people>> to the view & I populate it by looping through the dictionary in a Listbox. Here is my sample code and it works fine:
...
0
votes
0answers
43 views
Dropdown selection cleared in parent window on refresh of partial child window MVC 4
I am currently loading a screen (parent window) with a partial child window that contains data being pulled from a database. In the parent window there is a dropdown (Being populated with data from ...
0
votes
2answers
59 views
Json data formatting best practice
I have a SPA web page. Data are loaded with ajax requests. I need to show some culture sensitive data on that page. What is the best way for formating this kind of data?
Basicaly I have two options:
...
0
votes
1answer
58 views
Interact with WebGL scene from independent elements
Is it possible to interact with a scene in WebGL (programmed with three.js) from other elements on a webpage? For example manipulate a scene on the WebGL canvas from an independent canvas or using a ...
0
votes
0answers
54 views
Exposing A Razor View Via Web api ( mixing mvc and web api)
I have a small web api project and i would like to expose a couple of razor views from that project ( id rather do that then add another mvc project and so on..).
I havent found a resource that ...
1
vote
1answer
31 views
2D Geometry in java
I was writing an application using mvc framework. It's actually an examination application.
There are question generator classes in model part. But when it comes to geometry question, I'm puzzled ...
1
vote
1answer
29 views
Changes to params in grails only seen in controller not in views
Part of my UrlMappings looks like this:
"/$lang"(controller: "main", action: "front") {
constraints {
lang inList: ['hr', 'sl', 'si']
}
}
Because I want to set lang ...
4
votes
1answer
75 views
In which layer should validation be performed?
I am writing a webservice.
Typically the input will be an XML document and the output XML or JSON.
The application uses the MVC patter, having different layers
Controllers: Receive XML and ...
0
votes
0answers
25 views
Ember Views and initializing with values - TypeError: this.currentState is undefined
I am having trouble working with ember views and initializing them with values before the template is rendered. With my code below, I am getting the following error in the browser:
TypeError: ...
0
votes
1answer
38 views
Package Manger Console Not Working
When I start visual studio express 2012 for web I get this error in the package manager console.
Cannot load Windows PowerShell snap-in Microsoft.PowerShell.Core because of the following
error: ...
3
votes
2answers
70 views
Can Spring MVC be used to implement MVC pattern in Swing applications?
I was wondering if Spring MVC can be used to implement MVC pattern in Java Swing Applications. I've done some study and found Spring MVC to be used for web development.
Is there any way Spring MVC to ...
1
vote
1answer
36 views
What layer should model resolver be in MVC
Assume that MVC design pattern is using and the web framework which is used does not support model resolving from HTTP request(JSON or XML data.). It is required to resolve incoming dumped request ...
1
vote
1answer
34 views
Position JPanel over controller
My application working good, but i need get SaveForm over SaveFormController. I need to change ButtonFunction in ApplicationMainFormController.
How to get JPanel over controller?
...
0
votes
0answers
41 views
Javascript Architectural Model
Are there any obvious flaws to this OO architectural model which I intend to implement using javascript? It is similar to the MVP model but instead the role of the model is broken down into three ...
1
vote
1answer
82 views
How should I design the classes for a simple CRUD operation in JSF + Hibernate application?
I am trying to learn Web Programming using JSF and Hibernate.
I have a table called mytable in my MySQL server which has 2 columns: name, surname
I also have a MyTable.java which is mapped to this ...
1
vote
1answer
28 views
When is KVC & KVO worth the trouble? Always?
It seems like a nearly new superset over Objective-C, with the combinations of dot notation mixed with directives, e.g.: studentsInClassA.@union.studentsInClassB.pets(...) and compliance syntax, e.g.: ...
3
votes
1answer
48 views
Route concern and polymorphic model: how to share controller and views?
Given the routes:
Example::Application.routes.draw do
concern :commentable do
resources :comments
end
resources :articles, concerns: :commentable
resources :forums do
resources ...
-3
votes
0answers
32 views
Referring to 2 classes (controllers) from one view in a rails application
How do I refer from one Rails app's view, to another class (other than the current one)? I basically want to use its own class (and its own controller), but also refer/ use methods from another class ...
0
votes
0answers
32 views
An NSArrayController changes its selection : what is the best way to catch this event?
One can put an observer on the selectedIndex method of NSArrayController. This method has some drawbacks I think :
what will happen when the arrangedObjects is rearranged ? I admit this is not a ...
0
votes
2answers
50 views
Ember.js: How are Views connected to Controllers?
this.get('controller')
is coming up null.
I am wondering if someone can explain how ember views are associated with ember controllers. Thank you.
0
votes
1answer
30 views
call action with parametr from route
i have the following action in my zf2 controller
public function indexAction($text1,$text2) {
}
is there any way to call indexAction with $text1 & $text2 params from route
for example :
...
0
votes
1answer
38 views
Rails: view based on a different model-controller
I am using two different models&controllers - say products and checkout, but I want the checkout to be ordered by the product number. (Meaning checkout for product number 5, checkout for product ...
-2
votes
3answers
62 views
MVC Can a controller send message to another controller?
As title,theorically, can a controller send message to another controller in design patter MVC?
Many thanks to everyone
0
votes
1answer
45 views
PHP Session Variables Dropped Between Controllers
So the problem is, when /MVCTest/manage/dashboard is called, the authenticator is failing because authenticate (a method in the authenticator class) is not finding $_SESSION['user_id'], so it kicks ...








