Controller provides a centralized entry point for handling requests. Usually is referred as a part of Model-View-Controller design pattern.
0
votes
1answer
60 views
AngularJS: Read route param from within controller
How can a parameter from an URL be read within an AngularJS controller?
Let's say I have an URL like http://localhost/var/:value and I want the value to be stored in a variable within the controller ...
0
votes
2answers
29 views
Access Controller Variable on default_scope
My app is based on the subdomain. Each manager has it's own subdomain that should show only his auctions. I have:
class Lot < ActiveRecord::Base
belongs_to :auction
end
class Auction < ...
0
votes
1answer
36 views
MVC How To Pass Url Values as Well as a Model From Action to a View
I am looking for a way to preserve a url parameter after posting through a form. For example my GET method takes a string "type" and uses that to determine the type of report to render in the View. ...
-1
votes
1answer
79 views
how to make angular filters customizable and how to use them in javascript
I have an array on my controller
$scope.arr = [......], a
nd in html I want to do
ng-repeat = "item in arr | color:'blue'" //this line works, filter done in the app.filter way.
where color is ...
0
votes
1answer
21 views
Reading wireless game controller
I have a Logitech Cordless RumblePad 2, connected via an USB wireless adapter. It's shown as Logitech Cordless RumblePad 2 (HID or USB) under Device MAnager in Human Interface Devices.
I'd like to ...
0
votes
1answer
27 views
Detecting multiple subfolders in Routes.rb
I want to match the following URLs to the same controller in my Rails app
/controller/folder1/folder2/
/controller/folderA/folderB/somefile
/controller/folderX/somefile
I currently can achieve ...
1
vote
2answers
58 views
I want to hide the controller names form the url
I want to hide the controller names from ther url. I tried using the routes.php file in config folder.
the code in the file is like this
$route['default_controller'] = "controller_home_body";
...
0
votes
1answer
12 views
Nested routes and dot in url in Rails
I'm building a simple todo app for some practice. I have projects which has_many tasks and tasks belongs_to projects.
So that I can display url/projects/1/tasks I'm nesting the route:
routes.rb
...
1
vote
2answers
44 views
Passing ID to Controller from Object in Rails
I'm trying to simply pass an object (dgroup) to another controller's (tplans) index action. I'm performing a lookup based on a foreign key, so I am passing it an object id that it must filter on, but ...
0
votes
0answers
28 views
Disbale Enable Button from Controller in MVC Razor
$
I have the following cshtml code snippet
@using (Html.BeginForm("SaveMapping", "DataImport"))
{
<button type="submit">Save</button>
}
on the basis of some action in ...
0
votes
1answer
30 views
add post data to an array in controller and output from view with Codeigniter
I have the following syntax:
Contoller
function new_auto_spread_details()
{
$postinfo = array();
$postinfo[] = $this->input->post('customer')
$postinfo[] = ...
1
vote
3answers
68 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
0answers
34 views
Grails AOP: HTTP Status 404 - /myApplication/myController$$EnhancerByCGLIB/list
I am facing problems with using AOP in Controllers. Ridiculously, only in test environment… dev and prod are running well.
In resources.xml, I have defined:
xmlns ...
1
vote
2answers
23 views
Why is controller thread is blocked if I use the session?
I have a pretty simple controller:
public class HomeController : Controller
{
public ActionResult Index()
{
Session["SomeData"] = "123";
return View();
...
1
vote
0answers
32 views
pass url from view to controller on PaypalReturnView
I have almost got my mobile web app sorted, I just need to get the return url from the return page after finishing my paypal transaction, I need the url as it has the token and payerid so I can finish ...
0
votes
0answers
13 views
Concept for a controller that proxies different file types and serves them under a certain path
I have two Servers:
Rails: ServerR
Content: ServerC
Now I want ServerR to proxy certain files of different kind (CSS, JS, PNG ...) under a specific url. Internally ServerR downloads the data from ...
1
vote
1answer
94 views
asp.net web application and c# code to control the repeaters.
I have been trying to write c# code in .cs file to control the repeaters.
I donot know how to use entity model to get the data from table and execute using repeaters into categories to ...
0
votes
1answer
26 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 ...
2
votes
2answers
42 views
Rails: Show 5 most recent posts excluding the most recent post
I want to show the most recent post in the show view, with the next five most recent posts in the sidebar.
Currently, I show the most recent post, but the sidebar includes that same post with the ...
0
votes
1answer
28 views
rails link to another controller
<td>
<%=link_to image_tag(phone.image, :class => 'list_image'), :controller => 'phones_feature_controller', :action => 'index', :id => phone.id %>
</td>
I want to ...
1
vote
0answers
37 views
Syntax to route Rails form_for to custom controller
Have tried forums, documentation and blog suggestions. They converge on syntax that for me does not properly save AND route through desired controller.
Big picture, I have two software applications ...
0
votes
0answers
38 views
I need to run a rake file from or after my controller file has finished in rails
I have a controller class in ruby on rails and it takes the input from a user off of a form webpage. I need my rake file to run after this file is finished, either at the end of the controller file I ...
0
votes
1answer
37 views
Rails controller dynamic update
So I want to make a rails website and I want to display people.
I have various scopes for active people, by team, by gender and such like this:
scope :alphabetical, order('last_name, first_name')
...
0
votes
1answer
30 views
How to set view variables to multiple different view in one controller [zend]?
I have stuck with implementing a simple scenario.
I have 2 views for a single controller
MyController
view/scripts/my/index.phtml
/index2.phtml
I know $this->view->test = ...
3
votes
3answers
134 views
Angularjs controller
I have a problem that I cannot find a proper answer to.
Ok I have data that i collect from api for example
Admin
User
user profile
user stats
For this I have
adminCtrl
userCtrl
...
0
votes
1answer
39 views
How to send data/ variable from View to Cotroller on a function MVC
im working on a MVC projekt.
how can i send the variable value from the view to the controller.
this is where i want to get the Id from; a GridviewROw
e.Row.Attributes.Add("onclick", ...
1
vote
1answer
57 views
Have multiple FXML files (created in SceneBuilder), but only one controller. Does each scene load it's own copy of the controller?
I have multiple FXML files I have created in SceneBuilder and one controller file. When I edit a value (say for instance, an integer value) in one scene, and then switch scenes, that value does not ...
0
votes
2answers
45 views
Write Checkbox to CakePHP Session
i would like to have a form where i have an additional checkbox (will not store input to db) which will be readout in the controller.
For Example.
In a Job Edit view i can select a user. Under this ...
0
votes
2answers
67 views
hide view and shows another with the clickof button with extjs
i have a login view after i click connect button i want that the login form desapper and the main view will be shown.
i have a login view after i click connect button i want that the login form ...
1
vote
1answer
34 views
Best way to call a Zend_Rest Action from another action controllers
I have set an "Api" module in my Zend (1.12) application who works with Rest.
So in that module the controllers extend Zend_Rest_Controller. It works fine and It's very useful using it from terminal ...
0
votes
0answers
84 views
Passing data from View to Controller in MVC4
Okay, so I've done this a million times before and I can't for the life of me figure out what's going wrong. So, I've got a Sql Server table called General_Info which when a user logs in will already ...
0
votes
1answer
20 views
How do I set a variable in my rspec test so that it can be used by the controller for a query?
I have a variable in my sessions controller.
session[:facebook_profile_id] = @user_info['id']
@user_info['id'] is an int. Example: 123
I then use that session variable in my main controller to get ...
0
votes
2answers
59 views
rails render form after error in other controller
I have two models in the following releationship: Client has_many products, and Product belong_to client. In the client show view I present a form to create new products, that automatically belong to ...
0
votes
3answers
204 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
1answer
53 views
How to render VisualForce page inputCheckBox in custom controlller accourding to user profile?
I have a VisualForce page that has a custom controller and i want users to see components like inputCheckBox only if they have the accessible option in their profile.
I've read that when using a ...
1
vote
1answer
50 views
ARM cortex Architecture Code execution
I have got a question the STM32F407 uC or more over about the cortex-M4 in general.
So how is code performed on the arm? Is every single instruction loaded from Flash and executed or is it stored in ...
2
votes
1answer
180 views
laravel: How to retrieve POST data through ajax in controller
I'm trying to retrieve $_POST data submitted through jquery ajax func but there seem to be nothing passed. Here is my code: first my form:
{{ Form::open('', 'POST', array('id'=>'ajax')) }}
...
0
votes
0answers
47 views
Selecting the closest option in a select element, in Angular.js
I have a SELECT like this in my template:
<select ng-model="selectedValue">
<option>$5</option>
<option>$10</option>
<option>$20</option>
...
0
votes
2answers
52 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
3answers
61 views
How do i append some value to an instance variable in ruby on rails?
Here's what I am trying to do in my home controller:
def view
@product= Product.find(params[:id])
rand_price = rand(202- @product.price.to_i) + @product.price.to_i
old_price = rand_price ...
0
votes
1answer
44 views
Writing first angular app. How should I architect this?
I'm writing my first angular app after messing around with some basic todo type apps and am curious at what would be the proper way to architect the controllers from a high level.
The app will allow ...
1
vote
1answer
51 views
Angularjs alway blank element in select tag
I am new to Angular.js (and also to this Forum) and want to try out some basics, but I got stucked at working with select and options.
I have a small app and want to add a select-box, but I get a ...
0
votes
0answers
33 views
How do I edit my JS slideshow with thumbnail selectors that are outside of slideshow container?
Okay. I'm working on a website that has a slideshow using this code:
function cycleImages(){
var $active = $('#cycler .active');
var $next = ($active.next().length > 0) ? $active.next() : ...
1
vote
2answers
32 views
Destroy all controller action in rails
I have a Notification model. All in all, this model is unimportant and is just to notify the user. I have no reason to keep this data.
The user can clear their notifications one by one via AJAX, and ...
-1
votes
0answers
32 views
unable to call UpdateEntity Method of entityset controller with ajax call
My ajax call:----
function Update() {
var id1 = $('#txtsid').val();
var Name1 = $('#txtsName').val();
var item = { Employee_id: id1, ...
-1
votes
1answer
36 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
0answers
84 views
Array[String] as parameter to play framework 2.1 Java controller function
I want to call controller function with Array[String] input in playframework 2.1. Java,
I am getting an error:
No QueryString binder found for type Array[String]. Try to implement an implicit ...
0
votes
1answer
16 views
javaFX 2- Listner inside Contorller
Would like to use drag and drop feature in controller (see below). But as tableView.getParent() is NULL, my listner is not working. Can you pleae help here? I do not want to move code to main class.
...
0
votes
0answers
65 views
When I click {{#linkTo}} and set the object in ember.js
App = Ember.Application.create({
currentProject: 21
});
The App.currentProject default is 21, and when I click the {{#linkTo}}, I want to set the :project_id in the App.currentProject .
...
0
votes
1answer
78 views
ZF2 Share partial view (menu) betwen controllers of same module
In ZF2 I have a module with more controllers, that shares let say the menu (for navigating betwen controllers).
To share this menu between the controllers I have to put this in every controller view:
...


