Tagged Questions
0
votes
1answer
7 views
MVC AJAX form in PartialView posts to ajax first time, second time does full post
I'm getting an issue where the first time I post my form it uses ajax and updates, but the second it does a full post back and replaces the page with my partial view. I've checked that I have ...
0
votes
1answer
10 views
Exception when i send my form Spring MVC
I want to insert a record to database so this is my controller :
@RequestMapping(value="/ajouter_activite",method = RequestMethod.POST)
public String AddActivity(@ModelAttribute Movement ...
0
votes
1answer
17 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
1answer
18 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
0answers
16 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
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 ...
1
vote
1answer
63 views
How to use ViewBag to pass list of data from View to controller
how can i sen a list of items from a view to a controller to save it. i believe that i can use Viewbag but i dont realy no how to use ite to pass data from view to controller.
this is what i have ...
0
votes
2answers
31 views
Ruby on Rails: how do I create an initializer method in the model or should I set all the default params in a controller?
I have a field in my model for date created, this is not passed from the form and is currently set in the create method of my controller.
Should this be in my model instead in some sort of ...
-1
votes
0answers
25 views
using rails to access data created in a controller
Is it possible to access the data from a controller in a different controller. For example, I have an admin controller setup to handle all posts, edits, and destroys setup by rails generate scaffold ...
1
vote
1answer
38 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 ...
-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 ...
1
vote
3answers
74 views
How to use one controller view as partial view for another controller in Ruby on rails
Is it possible to use one controller view as partial view of another controller view ...
in My Scenario My controller having action method index and another controller having action method index as ...
0
votes
1answer
28 views
How to call a Model Method from a Controller in Rails 3?
In my model I have something like:
class CML < Lead
def model_method
#something
end
end
and in my Controller:
def recommend
@var.model_method
#more stuff
end
and @var is a CML ...
0
votes
3answers
233 views
Php MVC framework needs too many files per page
I have tried to build an MVC php framework, similar to Symfony. Every page is loaded through the front controller, which loads the corresponding page controller (1) and view (1). The view loads the ...
0
votes
2answers
60 views
wired variable are null in zk controller
I'm developing with zk framework in java (with eclipse ) .
I'm trying to link some textbox (view) to controller throught wired variable .
The problem is that in the controller the wired variable is ...
-1
votes
1answer
37 views
Create several records of the same table in one click
I have a questionnaire that needs to be answered.
My model has table answers and table questions and i pass correctly but I get an error
undefined method 'each' for nil:NilClass
I just need a ...
0
votes
1answer
93 views
Passing ext textbox values to javascript and then to controller action
I have a scenario where I have to pass the username and password values from ext textfield to a controller action to do validation with the database. I have written the following code
...
1
vote
1answer
51 views
Application Init Handler Equivalent in Angular?
I would like to "simulate" global variables in Angular. I would also like to be able to initialize those "global variables" in an App_Init()-type of handler. Such an initialization will require $http ...
1
vote
1answer
70 views
Connot add controller in ASP.NET MVC project
I'm trying to add a controller in my ASP.NET MVC project.
I am using Entity Framework Code First (5.0), and when I right-click the Controllers folder in my project and selecting Add Controller:
...
0
votes
1answer
62 views
Grails Generating a zip file for the user to download
I am a newbie to grails currently working on a web-app project that works with users uploading pictures. Users can create a "hunt" with a list of prompts. Each "prompt" is the objective for ...
0
votes
1answer
68 views
How to pass variable from controller to the view joomla mvc
How do I pass my variable from joomla sub-controller to the view according to this example
class MYControllerControllerParser extends JController{
public function ...
0
votes
0answers
40 views
How to access gridpanel from controller to save grid data to database
I have a gridpanel and I want to update the data in the grid to a database, but I am not able to access the grid in my controller so that I can proceed and update the database in the database.
0
votes
0answers
56 views
Passing values into a strongly typed MVC 2 view?
all.
I am relatively new to Microsoft's new implementation of Model View Controller. I'm creating an app in MVC 2.
I have a strongly typed view called "CreateAlbum" that's tied to a model class ...
1
vote
4answers
76 views
Spring MVC: How to treat html suffix like any RequestMapping
I have a legacy system and some url rewrite rule that we want to get rid. One of which is a rule to change is /tools/lookup.html?what=this and change it to /tools/search?what=this and actually returns ...
0
votes
2answers
36 views
Error - Template is missing, unable to have 2 show views for the same posts
This is a follow up question to: Two separate show views for the same database in Rails
The error I am getting is:
Template is missing
Missing template items/show, application/show with ...
1
vote
3answers
365 views
AngularJS - Controller of my partial
I've a template that is appendend many times in my DOM.
<div ng-controller="theController">
content does not matter
</div>
So the controller is istantiated many times.
This is a ...
0
votes
2answers
46 views
Undefined method error when I add method to model in Rails
I have the error
undefined method events_and_repeats' for #<Class:0x429c840>
app/controllers/events_controller.rb:11:in `index'
my app/models/event.rb is
class Event < ActiveRecord::Base
...
1
vote
2answers
88 views
How to validate presence and regex format in rails controller?
I am trying to validate an email address.. whether it is present or not.. and whether it meets a regex criteria (/xyz/). I really need to do this on the controller or view level in rails as I am going ...
3
votes
1answer
60 views
mvc controller single responsability principle and POST requests
I am interested in the correct/standard/advised approach for an django web application I am currently developing.
I have practical experience in programming, but I am worried about the efficiency of ...
0
votes
1answer
35 views
Concrete5: Is it possible to access the value set by set() function from another function in the controller?
In my controller's view() function, I have something like this:
function view() {
$this->set('myVal', $text);
}
Now is it possible to access $myVal from another custom function inside the ...
0
votes
1answer
45 views
Ruby on Rails, how do parameter-passing to controller?
I have Event Calendar. I have standart link to create new event (it was created in views by scaffolding):
<%= link_to 'New Event', new_event_path %>
Now I need put same link to each day of ...
0
votes
0answers
36 views
MVC send html control values to controller
I have a combo box (select tag) in my view and I want to send the value of the selected item to the controller.
Until now I used Html.ActionLink but its parameters are set at server side, not client ...
1
vote
2answers
96 views
Should the page controller verify if the selected view/template exists? [closed]
I'm busy with a small framework which I would like to build on "accepted" standards. One of my biggest quests was to ensure that my project config files (containing db info etc) is secure but still ...
2
votes
1answer
77 views
Multiple Instances of the Same Controller Simultaneously in Ember
Just been watching the Ember Peepcode video. One thing it has hammered home to me is that Controllers are singletons, so a single instance of each Controller is created at runtime and the controller's ...
1
vote
2answers
121 views
JAVA Swing MVC - Main Controller?
I'm having some troubles designing the architecture of an application I'm trying to develop. I'm working on JAVA, and I started working on this application because I want to deepen my overall ...
0
votes
2answers
34 views
What is the recommendation of the creators of the asp.net with mvc to put business logic in applications?
When I search the internet, I found that some people say that the logic should go in the ViewModel and some people say it should be go in Controller in asp.net with mvc applications.
So I cannot come ...
0
votes
2answers
179 views
Best practices in MVC using Controllers with Objects and ViewModels
When using a Controller, is it advisable to expose your domain entity or is it better to create a model. I have this as an example:
[HttpPost]
public ActionResult Create(Order order)
{
if ...
0
votes
1answer
59 views
Opencart Login Categories
I need to create a log-in for all categories apart from one with its own ID, say '192'
In controller/category.php I added the below...
if (!$this->customer->isLogged()) {
...
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 = ...
2
votes
1answer
89 views
fat model and skinny controller design confusion between the controller method and model method
i'm newbie in MVC (using codeIgniter as my example) and i have read MVC fat model and skinny controller for like 3 times, what i got :
model does the hardwork while controller calls the model and ...
1
vote
1answer
61 views
Why does IoC has influence on Controller creation and how to fix that?
I have strange issue in my ASP .NET MVC application. I have some controller and some IHelper and it's implementation Helper for this controller. When I use this helper like below:
public ActionResult ...
0
votes
3answers
36 views
Retrieving first part of two-part params[:id] in rails
I'm sure this has been answered before but I've looked everywhere, so I apologize in advance. When I run:
<%= params %>
I get back: {"controller"=>"spree/taxons", "action"=>"show", ...
0
votes
0answers
16 views
Pass Data To View And Back Without Getting Null Errors
Say I have a ViewModel that holds a list of User records and a list of integers.
// ViewModel
public class DataViewModel
{
public List<User> Users { get; set; }
public List<int> ...
0
votes
0answers
29 views
Should I use MVC pattern for this type of web service
I need to create a web service which handles XML requests like this one:
<?xml version="1.0" encoding="UTF-8"?>
<request>
<action>getProducts</action>
<params>
...
0
votes
1answer
35 views
How many controllers to make in a framework generally?
I was wondering if there are any guidelines for the number of controllers to make in any web based frameworks. I know it depends on the requirement. But still if you would consider a basic application ...
0
votes
0answers
55 views
Doctrine Entity Manager access
I integrated my Codeigniter with Doctrine ORM the way described in this great tutorial
http://www.joelverhagen.com/blog/2011/05/setting-up-codeigniter-2-with-doctrine-2-the-right-way/.
It says that ...
1
vote
3answers
247 views
New to Spring unable to get controller working
I am new to Spring and have looked at countless examples and cannot figure out this problem. The issue that I have is that when I click the link from my index.jsp page it does not forward to the ...
0
votes
1answer
37 views
Where should I store session code in a Rails app?
In a Rails app I'm creating, I have some code in my controller that I'm wondering whether it's in the proper place. The code is fairly insignificant, it stores ids in an array to show 'recently ...
1
vote
1answer
60 views
Global Logging method in MVC based web app
I am creating a management/crm system.
I have a class in my libs folder called Util which contains some static functions.
I want to create a static function for logging user actions from anywhere in ...
1
vote
1answer
149 views
Controller Servlet in Web Application workflow
I would like to know what is the starting point of any web application deployed on JBoss/Weblogic/Webphere.
For example, If you take a struts based application the starting point is ActionServlets ...









