Controller provides a centralized entry point for handling requests. Usually is referred as a part of Model-View-Controller design pattern.
0
votes
1answer
4 views
Controller & Model issue in CakePHP 2.3.5
i'm having an issue with this (the database design is in spanish):
I have a controller ProfesionalController.php and a model Called ProfesionalModel.php, in the ProfesionalModel im using
public ...
0
votes
1answer
9 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
20 views
How to Reference Router Generated Controller from View
I have the following code in my Ember app...
App.Router.map(function () {
this.resource('messages', { path: '/messages' }, function() {
this.route('message', { path: '/:message_id' });
...
0
votes
1answer
19 views
Fire a directive at ng-click event in Angular
Let say that I have
<div ng-controller="MyController" ng-click="MyControllerFunction()" ng-tracking pageevent="button_clicked">click me</div>
I cannot change this structure at all and ...
0
votes
1answer
15 views
Flash and redirect_to in one line not producing flash
I have the following code
redirect_to questionnaire_url, error: "Now please fill in the questionnaire."
Normally if I set a flash[:notice] value above the redirect the flash shows on my page, ...
0
votes
1answer
18 views
Problems with login at codeigniter
thanks for reading my post, i have this issue with a nettus tutorial and codeigniter, i am working with login forms controllers and model, and i made a change to keep level or rol when a user logins, ...
0
votes
1answer
17 views
Editing multiple records in one form - Rails
I'm trying to edit multiple records using one form, so the user can edit a few records then press submit at the end rather than after each individual one. I've posted my current code, and I get this ...
0
votes
1answer
19 views
Zend url router setting
How can I use Index Action in CommentController when url is http://site.com/api/location/{location_id}/comment/
i have code
$r = new Zend_Controller_Router_Route_Regex('api/location/(.*)/comment',
...
0
votes
1answer
7 views
xcode - switch between more than 2 view controllers
I have several .xib files (page1, page2 ...) and want to switch between them using buttons (as a navigation bar)
I am using
page1 *second = [[page1 alloc] initWithNibName:nil bundle:nil];
...
0
votes
1answer
18 views
Relational database show fields from different tables in view, rails
I have 4 tables, customer, customer_site, site and connection. customer and site have many customer_sites and a site has many connections. This has all been set up in my models. Now i'm trying to have ...
0
votes
1answer
23 views
Stored Procedure in SQl server 2008 to get sum of column of table and call it in controller in asp.net mvc3
I am new to SQL- Server 2008
I want to write a stored procedure to get sum of a column in table and display it in a single column.
and I want to call this procedure in my controller of Asp.net Mvc3 ...
0
votes
2answers
23 views
Sharing dynamic data between two controllers with service AngularJS
I have two angular services that need to share models (a list of messages and an individual message), which they get from a call to our API. The service is as follows:
angular.module('CmServices', ...
0
votes
1answer
28 views
RubyOnRails - rails generate controller
i have a problem when i try to generate a controller with:
rails generate controller profiles show
I already tried this solution, but didn't work:
script/rails generate controller profiles show
...
0
votes
0answers
13 views
how to use controllers and actions authorization at the same time
I'm a newbie in cakephp and I'm trying to build an application from the scratch. I'm reading the manual and also I did the tutorials.
Right now I'm facing an issue about authorization: How allow the ...
0
votes
1answer
12 views
Posting Textarea to Controller (currently null is being passed) - MVC
I'm creating a website where the user will fill in a textarea (in response to a question) and then press next. When they press next, the textarea will be submitted to the controller and the next ...
0
votes
1answer
18 views
Disable action method from being called from the address bar
I have a method in my controller that I don't want to be called from the address bar in the browser...
Is there a way to do that? Maybe some kind of annotation, modification in the route ...
0
votes
0answers
42 views
MVC 4: TextBox and DropdownList in for loop don´t get right value
i have a problem with my dynamic form. I have a Search page where a user is able to search in different Tables. The logic runs fine but in the view i want to show the user the input also if he uses ...
2
votes
1answer
36 views
Laravel 3 routing all “/” requests to a specific group of controllers
I have a main site (/site) and two hotsites (/market, /content) and 1 admin (/admin). Now I can only access the main site using localhost/site/controller, but I wanna to route all "/" requests to the ...
0
votes
3answers
26 views
Codeigniter 2 difference between index and __construct and what to put in __construct
When is __construct called and when is index called? And are there any other differences?
And what to put in __construct? Whats the best practice, should I put $this->load calls... ? what else?
...
0
votes
1answer
13 views
JSF 2 doesn't find my method
So I have a view that create pie chart. Th recurring code looks like this.
function drawChart() {
var dataBest = new google.visualization.DataTable();
...
0
votes
2answers
47 views
iOS Controllers for universal (iPhone/iPad) app
I am just working on iOS app and I want to make it universal for both iPhones and iPads. This is done and works without any problems:
if ([[UIDevice currentDevice] userInterfaceIdiom] == ...
1
vote
3answers
37 views
Detecting changes in the model; php yii framework
I'm creating an audit trail module that i will put in a larger system; and i've created a table to store the trail entries , as an "auditor" what i want to see the currently logged on user, the page ...
0
votes
0answers
47 views
what can one call the jsp file 2 controller files in java?
what can one call the jsp file 2 controller files in java??
This is Jsp File
<form:form commandName="userProfile" method="post" action="createuserform.html" id="userForm" ...
0
votes
1answer
48 views
How to pass values from view to controller in grails
I need to pass the Id value to my controller to execute the action. Currently this is what I have in my controller.
def StartServer() {
amazonWebService.ec2.startInstances(new ...
0
votes
1answer
28 views
How would I use button in the following situation in grails?
I am returning a map value that contain multiple items. The map is as follows:
def myList = []
//Some code to obtain the List
List << ["Id": Id,"Name": Name,"Code": sCode, "RunType": x ]
...
0
votes
1answer
14 views
Accessing drop down list value from controller
I added a drop down list to my view as shown below.
<select id="colorStyle" name="Colours"><option value="0">Red</option><option value="1">Yellow</option>
How can I ...
0
votes
1answer
53 views
Unable to inject `$http` using AngularJS explicit `app.controller` syntax?
I have been told that I should be using the app.controller syntax, in order to support minification.
Rewriting the sample (tutorial) example, and I found that I couldn't get it to work:
use ...
0
votes
2answers
59 views
Rails Form Image_Tag VS File_Field_tag
I'm making a profile picture the user can either get it from Linkedin or upload it's own.
When the user get's it from LinkedIn it's shown via an image_tag:
image_tag(Base64::decode64(field_value), ...
0
votes
1answer
29 views
Yii Creating an audit trail; Controller to another Controller
I'm creating an audit trail module for a project using Yii php, and i'm quite a newbi.. and as we all know audit trail is concerned with the creation of history, transaction logs... i've created a ...
0
votes
2answers
73 views
Understanding dependency injection in AngularJS controllers
Just learning dependency injection, and I think I'm starting to understand it.
Please tell me if I'm on the right track...
E.g.: Are these two equivalent?
/* injection method */
function ...
0
votes
1answer
26 views
Error in controller with angular-google-maps in Angularjs
I have a problem with setting up my controller in angular js.
I want to use angular-google-maps (http://nlaplante.github.io/angular-google-maps/#!/usage)
I have my angular controller like this:
...
-1
votes
1answer
26 views
Public action method was not found on controller
I have the following controller method:
public ActionResult GetResults(string viewToReturn, int resultsPerPage,
string classification = null, string sessionId = null, int? lastId= null)
{
...
0
votes
1answer
12 views
model data cannot be displayed in view
I've been following a simple hello world tutorial for the maven webapp archetype. however I ran into problems displaying the model's data in my jsp.
hello.jsp
<html>
<body>
...
0
votes
1answer
28 views
Ember content not available in Route
Can anyone tell me why my usersArr is not available to me in my Ember Route? See the alert called out below.
App.UsersIndexRoute = Ember.Route.extend({
setupController: function (controller, model) ...
0
votes
2answers
21 views
Rails Rating System with strange helper method
there's an issue, that is bothering me.
I'm following this "Ruby on Rails"-Tutorial to implement an ajaxified rating system
...
0
votes
1answer
21 views
Angular way to differ server model and client view model
I'm just wondering what is the best practice to view model data from server in Angular app?
For example in my controller i'm getting model from server (with custom ngResource service) and then I need ...
1
vote
2answers
28 views
How to short the Controller actions in Rails
def index
@customers = current_user.customers
respond_to do |format|
format.html # index.html.erb
format.json { render json: @customers }
end
end
def show
@customer = ...
1
vote
0answers
17 views
Pulling data from the DB based on user input (or context data) and show it in WD4A
I'm trying to make a simple WD4A app where the user choses a shipper in the first view, and based on his choice he gets to see a list of items from that shipper in the second view.
What I have so ...
1
vote
1answer
18 views
When are controller methods called in WD4A?
Can someone explain to me when methods are called in WD4A applications? Particularly methods that are defined in the application controller (and not the view (controllers)).
I'm looking at some sample ...
0
votes
0answers
29 views
Controller can not detect ajax requests
I am using simple_form gem and generating the form I am specifying the remote:true option like this:
<%= simple_form_for @webinar, validate: true, remote:true do |f| %>
So, the output html ...
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
27 views
Code Igniter doesn't recognize my function in controller under a folder
I have a folder under my main controller-folder called admin, in that controller i have a file name admin.php which has a function xyz.
I want to access that function using this url
...
0
votes
1answer
29 views
Missing required Parameter:post for new controller action
I have a controller called publish added to existing posts_controller.rb
when I access http://localhost:3000/posts/15/publish it returs Missing required Parameter:post in the browser.
I'm not sure ...
0
votes
0answers
14 views
Sencha Touch 2 Store.
I am having a problem with Sencha Touch 2 Store.
I am creating a Store inside a controller. The Store is defined before in app/store. Right After the creation of the store I am Storing in to id model ...
0
votes
1answer
50 views
AngularJS - controller and factory - where am I going wrong?
I'm new to Angular and cannot pinpoint where I am going wrong. I'm just trying to simply inject my factory into my controller, reference said controller within my html and use ng-repeat to present the ...
-2
votes
0answers
10 views
difference between i/o processor and i/o conto [closed]
What is the difference between I/O processor and I/O controller.??
I have been asked this question in interview which was for trainee in electricity board.
I couldn't figure out what she was ...
0
votes
1answer
22 views
(Spring controller) The requirement sent by the client was syntactically incorrect
I have the following jsp:
<form:form method="post" commandName="fare">
<div><fmt:message key="createfares.name" /></div>
<div><form:input path="name" ...
0
votes
2answers
39 views
@Autowired is not working with jersey and spring
When I am running test at that time @Autowired is working but when I run the web app and try to fetch data at that time its throwing null pointer exception.
this is my controller
In this BuyerRepo ...
0
votes
1answer
27 views
Getting values from text box in controller and save it in another model
I have a controller called users_controller and one action called getdata().getdata.ctp is the view corresponding to that action. in that view i added a elemet called route.ctp which contains a from ...
0
votes
1answer
22 views
How to make small addition to inherited gem controller and where to put 'super'
I'm using devise, and would like to add a special_method if a user model is updated successfully. Below is the source code for the registrationsController that I am inheriting from.
I want to add ...





