Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
4answers
9k views

ASP.net MVC, display a view from another controller

Is it possible to display a view from another controller? Say for example I have a CategoriesController and a Category/NotFound.aspx view. While in the CategoriesController I can easly return ...
9
votes
3answers
307 views

MVC 3 - Controllers and ViewModels - Which should contain most of the business logic?

Currently in my application and using the unit of work pattern and generic repository, all my controllers contain all of the business logic. I'm in the process of putting everything over to use ...
7
votes
1answer
2k views

What are some scenario's of having a Session-less Controller in ASP.NET MVC3?

Reading Guru-Gu's blog post about ASP.NET MVC3 hitting RC, he says:- Session-less Controller Support You can now indicate whether you want a Controller class to use session-state – and if ...
6
votes
2answers
399 views

First Call to a Controller, Constant is defined, Second call, “uninitialized constant Oauth”?

I am trying to get the OAuth gem to work with Rails 3 and I'm running into this weird problem... (independent of the gem, I think I've run into this once before) I have a controller called ...
6
votes
2answers
2k views

ASP.NET MVC: Get all controllers

Is it possible to get all controllers available to a ControllerFactory? What I want to do is get a list of all controller types in application, but in a consistent way. So that all controllers I get ...
6
votes
6answers
12k views

HttpContext on instances of Controllers are null in ASP.net MVC

This may not be the correct way to use controllers, but I did notice this problem and hadn't figured out a way to correct it. public JsonResult SomeControllerAction() { //The current method has ...
5
votes
5answers
5k views

Multiple Controllers with one Name in ASP.NET MVC 2

I receive the following error when trying to run my ASP.NET MVC application: The request for 'Account' has found the following matching controllers: uqs.Controllers.Admin.AccountController ...
5
votes
2answers
228 views

Rails - Two controllers or adding actions?

Designing a web app with a admin section and a public facing section. It feels like having a public facing controller just for "index" and "show" is a bit redundant. All the suggestions I've read ...
3
votes
1answer
414 views

How can I override a Magento controller?

I need to check the validity of a coupon code on the checkout/cart page with server-side code. Magento already ships with a similar check in place. However, I need to add one to see if a user is ...
3
votes
3answers
157 views

Magento multi website controller

Is it possible to programmatically dispatch websites in Magento? Currently, I have a directory in the root of my site called /websites. In this directory I have subdirectories for each website, for ...
3
votes
2answers
71 views

Rail Application Model/Controller & Routrs organisation

I'm trying to work on this Rails app which has the following objectives: /foods/ - render a list of food categories (eg: Breads, Dairy, Biscuits...etc) /foods/breads/ - render all Foods that are ...
3
votes
2answers
3k views

Custom Devise controller

I would like to customize my registrations controller for Devise in Rails. I understand that you must create a controller like this: class AccountsController < Devise::SessionsController def ...
3
votes
2answers
1k views

accessing HttpContext.Request in a controller's constructor

I'm following this ASP.NET MVC tutorial from Microsoft: My code is slightly different, where I'm trying to access HttpContext.Request.IsAuthenticated in the controller's constructor. namespace ...
3
votes
1answer
128 views

how big should your controllers be in asp.net-mvc

i see the new feature of areas in asp.net-mvc 2. it got me thinking. why would i need this? i did some reading on the use cases and it came down to a specific point to me around how big and how ...
3
votes
3answers
166 views

Inserting Controller Actions between Actions in Rails - Best Practices

What are best-practices (or usual-practices) when it comes to adding more steps in a process in Rails? For example, I am working with the Spree e-commerce Rails platform and I would like to add a ...
3
votes
4answers
2k views

Rendering Partials from One Controllers View to Another Controllers View in Rails

I have a view for a controller called "show". Inside that view, i want to render the contents of another controller's view - and obviously, the logic for the form on that view to talk to the ...
2
votes
2answers
102 views

Rails: set a value using a link

I need help trying to create a link that submits an edit form. Let's say I have a list of objects Object - Color - Own? Ball - Red - false - [button] Hat - Blue - true - ...
2
votes
1answer
133 views

2 UIViewController 1 View

This is a question regarding iPhone objective C design. How can I have 2 UIViewControllers manage the same view? Each UIViewController will be created at different times, but their views are ...
2
votes
2answers
62 views

In MVC, how do you structure #Controllers with respect to Views, Models and Routing?

I have a question concerning the structure of an MVC application. Suppose we have to realize a web-based application composed by several modules, such as shopping cart, store browser(end-user), store ...
2
votes
1answer
458 views

Expect method call and proxy to original method with RSpec

I want to discover with BDD missing :include params for ActiveRecord::Base.find method. So my idea is to have in spec something like this: ...
2
votes
1answer
592 views

TinyMCE Filemanager - Plugin

NOTE: ORIGINAL PROBLEM WAS FIXED, but there's still some issues using the plugin on rails 3.0.3 with ruby 1.8.7, the maintainers have been notified of this. Thanks for everyone's help. Hi All, I am ...
2
votes
1answer
200 views

How to use multiple with one OutputStream

I need to show four charts on a grails page in a grid layout with positions 11, 12, 21 and 22. Each chart is build with a code similar to: <img src="${createLink(controller:'paretoChart', ...
2
votes
3answers
141 views

Is there any partial kind of thing for controllers in Ruby on Rails

I have a controller having more than 1000 lines of code. Right not I am doing Code review for this controller. I arrange my methods according to the module. Now I realise that my controller is not ...
2
votes
1answer
1k views

Zend Framework : Subdirectories in controllers directory

I'm using the Zend Framework for my website, and just created a special module "api" to create... Well, an API. Now, I have a lot of controllers in my module and I'd like to create subdirectories in ...
2
votes
1answer
132 views

when unit testing an asp.net controller, where do you mock the httprequestbase?

when unit testing a asp.net controller, don't you have to somehow mock the httpcontextbase? All my controllers inherit from a custom controller class that I wrote (it just adds some common properties ...
2
votes
2answers
1k views

Rails Application Controller for critique (feel free to be harsh)

I've written an application controller that handles 99% of what I need any controller to do. I've posted it here (pastebin). Like I said, feel free to be harsh. -update: added comments :) Thx, -C ...
1
vote
0answers
64 views

MVC 3 sub-folders for Controllers without Areas

I'm trying to organize the Controllers into sub-folders so that the request would look like: <domain>/Account/Home <domain>/Client/Home <domain>/Vendor/Home And have the ...
1
vote
3answers
51 views

How to redirect to a specific URL from within a controller?

I am trying to redirect user to a specific address, after they submit a form. What I use is the code below in my Content controller: return RedirectToAction("Business", new RouteValueDictionary(new ...
1
vote
2answers
42 views

How to avoid bloating the controller code in CodeIgniter?

Controllers are there in MVC pattern to process user input and output. So, input validation and response preparation should be done in a controller. For instance, I have a controller method "save" ...
1
vote
1answer
79 views

Magento Enterprise controller override

I am trying to override the Enterprise/CatalogEvent/controllers/Adminhtml/Catalog/EventController.php. The problem is the config.xml. How do I follow the naming convention of Magento. The following ...
1
vote
1answer
63 views

Rails 3 controller from plugin

I am creating a Rails 3 plugin and I want to integrate controllers in it that will be automaticly consider by rails as a "normal" controller from the app/controllers folder. How can I do that or what ...
1
vote
1answer
34 views

Rails Faux-Rename Controller

The title might be a little misleading, and I apologize for that. What I want to do is something like how Reddit renames their controller for their subreddits. They use the form /r/programming, ...
1
vote
0answers
66 views

Follow MVC rules with multiple controllers

I've a little doubt for writing a Python application follow the MVC rules on wxPython. Example: MainForm PanelLst (ListCtrl + Some buttons) PanelTree (TreeCtrl + ProgressBar) ...
1
vote
2answers
60 views

PHP MVC - Is it bad practice to use a model that doesnt directly relate to a controller of the same name?

I'm currently working on an MVC based PHP project. My script basically will be sending out some emails to clients, and it needs to pull an email template from the database. I've got a mail helper ...
1
vote
3answers
65 views

iPhone creating nested views

I'm noob in iPhone programming. I want to create navigation-based application with several nested views, when first and second are UITableView-type, and the third is simple UIView with my own ...
1
vote
1answer
220 views

Override Magento controller

I need to override magento controller. Magento have to load my own OnepageController.php, how can I do this? Examples, that I found dont work((. Can you give me example step by step. Thanx.
1
vote
1answer
131 views

CodeIgniter nested controllers?

I'm new to CodeIgniter and I hope that my question will have a simple answer. I have a website with a couple of menu items (menuA,menuB and menuC). I have modeled it with one main controller, ...
1
vote
1answer
192 views

Handling one jsp-page with 2 different Spring controllers

Does anybody know if one can map single jsp page to two different controllers in Spring? For example, I have a page(with a few forms) with a several functionality submit buttons and I want them to ...
1
vote
2answers
108 views

Is There A Downside To Calling Models From Helpers In CakePHP?

A bit of context: I need to cache the homepage of my CakePHP site - apart from one small part, which displays events local to the user based on their IP address. You can obviously use the ...
1
vote
1answer
51 views

Controller setup with three models?

I have a three models: Homework, Question, and HomeworkAttempt. homework.rb: class Homework < ActiveRecord::Base belongs_to :group has_many :questions has_many :homework_attempts end ...
1
vote
1answer
70 views

Does Rails create a new session when different controllers are called?

Say I have an app with multiple controllers . UserController EventsController Does Rails create different sessions when I first request for User#show method and then go on to call Events#show ...
1
vote
1answer
63 views

UITableView row cell controllers

My first post ever (so please be patient). I am building a group UITableView. Each section is defined and stored in an object called TableViewSectionClass. The rows is different section will use ...
1
vote
1answer
29 views

Grails controller syntax correction

I have something like this in my controller: class houseController = { ... code ... if(params.answer == null) redirect(action:'xxx') ... code ... } My doubt is, the redirect in the middle of ...
1
vote
2answers
1k views

Grails controllers pass parameters

My controller is the folowing: def participated = { def temp = ConferenceUser.get(params.temp) def prizes = Prizes.findAllByConferenceUser(temp) // find all rooms where current computer ...
1
vote
3answers
354 views

MVC 3 Action on different controller, but need ViewModel

I'm searching for the best possible way to solve the following problem: I have a search page, with different criterias that can be selected, which are availible in the SearchViewModel. Now the search ...
1
vote
0answers
195 views

Reusing view/view controllers?

I have a view and its view controller. They get the job done and work as I want to. One of the functionalities is when the user taps the view, something gets added to it. I'm adding new features to ...
1
vote
3answers
118 views

What is the purpose of the new controller action in Rails?

A scaffold generates the new action like this: def new @product = Product.new respond_to do |format| format.html # new.html.erb format.xml { render :xml => @product } ...
1
vote
2answers
353 views

Returning an ActionResult from another ActionResult

Say I have the following code, mocked up in notepad, so excuse any minor errors :) //Default page public ActionResult Index() { var musicViewModel { Albums = ...
1
vote
2answers
446 views

RSpec Scaffold Controller, understanding the defaults being given

I'm working through an rspec tutorial (peepcode tutorial). I generated some scaffold and I was hoping someone can help explain how the describe could be re-written to read a bit clearer for newbie. ...
1
vote
4answers
429 views

MVC2 and two different models using same controller method? Possible?

I don't know if this is the right way of doing this or not, but I am using Jquery and MVC2. I am using a the $.ajax method to make a call back to a controller to do some business logic on a .blur of ...

1 2 3 4