The controllers tag has no wiki summary.
0
votes
1answer
18 views
NoMethodError in Flights#show
Showing app/views/flights/show.html.erb where line #3 raised:
You have a nil object when you didn't expect it!
The error occurred while evaluating nil.name
Extracted source (around line #3):
1: ...
0
votes
2answers
24 views
Date And Time Needed
Well, I want to display departure and arrival times(with dates) for my flights application.
I had created two fields 'departure' and 'arrival' with data-type datetime.
What methods can be used for ...
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
0answers
14 views
spring 2.5 Controllers depreciation?
By using Spring 2.5,i have done a leave management project and it was adoptable.But in the reality,many of the controllers and other have been deprecated like "SimpleFormController",
"MultiController" ...
2
votes
2answers
76 views
What is a model and what is not a model php
I'm quite confused on how do I build my models, I failed to understand this for the last 9 months. Although I am reading and watching all the references , @teresko gave to me.
To further narrow down ...
0
votes
0answers
9 views
Symfony 2.2.1 The ip address in request gets changed in Embedding Controllers
Symfony 2.2.1 The ip address in request gets changed in Embedding Controllers. am in missing something. or is there any way to persist the clients ip address in the sub request. I am useing it in ...
0
votes
1answer
55 views
Ember.js - Communicating between controllers and their views
I'm just in the early stages of learning Ember, and have run into something puzzling.
I'm trying to communicate between two controllers and have their corresponding views update as well.
In a ...
0
votes
1answer
143 views
Redirect to controller action in sub folder - Laravel 4
I'm new to laravel.
This might be very simple but i was unable to find an example or documentation.
I need to redirect the user to an action in a controller that is in a sub folder.
Folder ...
0
votes
1answer
17 views
Rails 3 helper methods not available in controllers even after explicitly including them
Fist of all I'm newbie to rails.
I have this in SessionsController:
def method
sign_in 'user'
end
And this in SessionsHelper:
def sing_in(user)
......
end
So Googling and reading some ...
2
votes
1answer
35 views
how to parse variable having xml data rails?
I am to retrieve value from variable 'user' having following
#<LinkedIn::Profile:0x00000001758bd0 @doc=#<Nokogiri::XML::Document:0xbac674 name="document" ...
-1
votes
1answer
32 views
NoMethodError in Characters#new
I am new to Rails.I am creating a Rails project in which Product and Character are the models.I have the following Questions.
Q1. I had given the association between the two models as
class Product ...
0
votes
1answer
68 views
restful controller inside controller with laravel
I'm having a designcontest website where my contests controller to show a single contest is as follows:
Route::get('contests/(:any)', array('as' => 'contest', 'uses' => 'contests@show'));
...
0
votes
1answer
97 views
Laravel: Can't access methods in Model from Controller
I'm having an issue with one of my controllers accessing the methods within a model.
I have a controller (application>controllers>event.php) with an index method:
class Event_Controller extends ...
0
votes
2answers
29 views
Rails: Special classes based on params in views
What is the best way to add classes to table cells in rails based on differing criteria for each cell?
For example...I have a date cell: If the date is coming up on 10 days from that date, need to ...
1
vote
0answers
27 views
Rails nested routing match
I am new to rails and have a tricky routing question. I have a resource with a nested collection that maps to the controller of the type for the nested collection. However the name of the ...
0
votes
1answer
58 views
Using my View Controller in a storyboard based app in iOS
So I have made a storyboard based app on xCode, basically a series of table views which lead to text based pages, but I started from a blank application. I have now written my own view controller ...
0
votes
1answer
34 views
How to share an array between two classes that inherit from different classes
I've got a Rails application with a PubSub Server (Faye) as middleware.. I've got the usual Rails-structure for Models, Views and Controllers, and I've got some controllers for my Socket-channels.. ...
1
vote
3answers
270 views
asp.net mvc 4 calling method from controller by button
In my Controllers i have class AccountController and within in i have this method
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult LogOff()
{
WebSecurity.Logout();
return ...
0
votes
2answers
80 views
Zend Framework: Multiple Modules in layout
How can I have multiple actions in my layout from different controllers/modules?
I tried this:
<div id="login"><?php $x=new User_LoginController; $x->LoginAction() ?>
<div ...
1
vote
1answer
15 views
Spring - Select controller based on a flag
Problem definition
I have a link that points to say myapp/doStuff
Currently I have a Spring controller to handle this request.. say doStuffOld
However now with a new project I need to do the ...
0
votes
1answer
77 views
beginning with winAVR
I have 20 odd years in programming starting from pascal 7 to delphi. I want to start programming micro controllers using C and the tool most electronics kit recommend is winAVR with programmers ...
0
votes
4answers
73 views
Laravel Routes - is it possible to not use them at all?
I'm a Laravel 3.x beginner with a CI background.
I'm very acquainted to use controllers rather than routes and I'm having issues trying to use controllers in Laravel.
For example: let's say I have ...
1
vote
1answer
81 views
Catch postgres trigger in rails controller after insert or update operation
I have an app with different models. One of the models is a badge model with a many to many relation with users via achievements.
In my controllers I have some logic to check if a user has gained an ...
0
votes
0answers
19 views
Having the same method in extended controllers
Iv'e got a small framework with the following controller structure:
page_controller extends master_controller extends controller
The last extend (controller) handles has a set of methods which my ...
0
votes
3answers
45 views
Codeigniter subfolder named like controller
I'm trying to make folder in controller folder with exact name like controller in Codeigniter. Is it possible by some trick or something?
Screenshot here: http://i.imgur.com/vrQ1J9V.png
0
votes
2answers
64 views
Test controllers without going through routing
I'm trying to test my controller's action chain in isolation. Specifically, I want to ensure my desired behavior is applied to all my controller's actions. For example, test that all my actions ...
0
votes
1answer
55 views
How do I establish associations between multiple ember views and their associated objects?
I'm confused about the relationship between templates, views and models.
I understand that one of the primary roles of a view is to translate primitive events into semantic events, but I'm unclear ...
0
votes
2answers
55 views
Devise user paths
I am using devise for my auth and it works great. I need a profile page and I created a controller for Users and have a show method in there which links to show.html.erb and that works once the id is ...
0
votes
1answer
43 views
Testing Object Instantiation in Rails Controllers
(In RSpec) I am testing that an object in my controller is getting instantiated:
CONTROLLER:
stripe_params = StripeParams.new(params)
TEST:
it "creates a new params instance" do
get :message, ...
1
vote
2answers
675 views
How to use update Resource Controllers laravel 4?
I have Customer Controller with index, edit, update methods
Route::resource('customer', 'CustomerController');
Controller methods update
public function update($id) { echo $id; }
my HTML Form
...
0
votes
1answer
34 views
dispatching event from a controller called trough ajax?
I am making an ajax call to an action from a controller, where after all the code logic executes, i am dispatching an event.
Unfortunately i can't seem to catch this event with an observer.
I am ...
1
vote
1answer
96 views
RoR Ransack Searching issue
I have two different controllers (scholarships_controller, scholarships_browse_controller) that look at the scholarship model. I want my Ransack search function to show the search results on the ...
0
votes
1answer
54 views
Proper Usage of Rails After_Filter
In a small app I am building, I have a controller that creates an exchange. When a user creates an exchange they are simultaneously the organizer of the exchange and a participant in the exchange. ...
1
vote
1answer
76 views
Spring Controller and Entity Manager
I have create a spring template project with many controllers.
In my controllers, I will have a connection to my DAO object and my DAO will save/update/get hibernate objects from my local database.
...
0
votes
1answer
20 views
attribute values are changing while trying to insert into tables in rails
I am working on a project where there are users and users have profiles. I am using the devise gem for the user authentication purposes.I have changed a path for an action in a controller which is ...
1
vote
1answer
249 views
AngularJS calling a controller from a directive
I have a model called 'user', 'user' has a controller called 'login' and a directive called 'userMenu', what I'm trying to achieve is that the userMenu directive uses the controller 'login' that's ...
0
votes
1answer
29 views
Proper way to change a instantiate button in parent view/control
I'm creating a single-page web app that has one controller for the overall page (PageController) and separate child controllers for two views (ViewController and EditController).
ViewController needs ...
0
votes
1answer
112 views
What do they utilize to build android apps with custom graphics and controls ?
What I mean to say while you're just getting started with the development and say you add a slider theres a predefined skin for that and you can place it somewhere on the screen, but in some apps ...
0
votes
1answer
60 views
storing value in variable
Ok, so I have ?document_key=2343t8ujjf being appended to my redirected url(index of my Partners Controller) after user signs an e-document.
I am storing this into a class variable in the index ...
1
vote
1answer
818 views
Ember.js problems binding content of array controller to content of a different array controller
We're having trouble linking the content of one array controller with the content of another array controller in Ember.js. We've scoured Stackoverflow, but no solution seems to work for us.
The ...
0
votes
3answers
77 views
What would be the best way to simulate the animation on the iPhones home screen?
I have two view controllers and i can manage the right to left animation between them via a custom segue, but what would be the best way to have the incoming VC animate with the finger, kind of like ...
0
votes
1answer
57 views
What routes to add in routes.rb for a controller create function?
My chap_three_controller.rb file :
class ChapThreeController < ApplicationController
def create
@marker = Marker.new(params[:m])
if @marker.save
...
2
votes
2answers
140 views
CodeIgniter: How to get input from View and use it in the controller
I'm quite new to CodeIgniter (using PHP). So right now I have a textbox on my webpage where visitors are requested to enter in their names. I take in a name (i'll use the variable $username for it) ...
0
votes
3answers
47 views
Rails controller contents into seperate configuration file
Does anybody know a good way to separate out a controller item into a separate file? I have the following in of my controller.
def admin?
session[:password] == "password"
end
But I'd like to ...
0
votes
1answer
60 views
Declare variables in controller symfony2
I have one doubt, I know the (Symfony2) controller's function and so I think is not correct to declare variables inside of these classes. But is possible?
In this way I could have one variable in all ...
0
votes
1answer
106 views
CakePHP Security Component Can't be Called
Certain pages of my website crash when I try to call the 'Security' component in any of the apps. For example in the AppController file, if I change the components definition from
var $components = ...
0
votes
1answer
408 views
Laravel 4.0 nested controller
I try to get the nested controller in Laravel 4 based on the following structure:
app
controllers
base
BaseController.php
website
WebsiteController.php
I want to get the website route to ...
0
votes
1answer
64 views
Cross controller security in CakePHP
I have the following situation: multiple views use a content editor that can upload files and retrieve a list of previous uploads via AJAX. I end up adding two actions to every controller for this. ...
0
votes
1answer
41 views
Why to rails redirects work when redirecting to a route and do not work when redirecting to an action?
I have been struggling with rails double render errors for a few weeks now (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and ...
0
votes
1answer
138 views
Thread Pooling in Grails Controllers and Services
I'm wondering how controllers and services are implemented in Grails. In particular I would like to know, whether and how it maintains a thread pool for both controllers and services.
Assuming ...


