0
votes
3answers
45 views
ASP.NET MVC Controller Lifecycle
It's my understanding that the constructor for a controller is not called during each web request. Assuming this is true, what is the lifecycle of a controller? Is is "constructed" …
0
votes
1answer
32 views
How do I dynamically change a controller in Zend Framework?
I'm halfway through a CMS where the URL is an SEO friendly name based on a page title. There is a need for one section to use a specific controller. So for example:
test.com/page1 …
0
votes
3answers
70 views
Reverse order of display of blog entries and comments, Ruby on Rails
I am new to rails so could use some help here. I have followed several tutorials to create a blog with comments and even some of the AJAX bells and whistles and I am stuck on somet …
0
votes
4answers
67 views
Rails - Too much logic in views?
I have an application used by several organizations and I want to check that users of one domain (a.domain.com) cannot edit users of another domain (b.domain.com). My question is w …
0
votes
1answer
36 views
Count records for Blog in Ruby on Rails - Easy Question
I am new to rails so sorry for the simple question. I have followed several tutorials and set up a blog with comments (even using a little AJAX - Ha proud of myself). I have done s …
0
votes
1answer
21 views
web2py (and other MVC frameworks): How to execute base code on all controllers
In web2py, is there a way to have a piece of common code be executed before all controllers are called? For example, I want to add some code that will log client IPs to a log of r …
0
votes
1answer
44 views
MVC : Separate admin controllers
I was wandering if there is option to do the following
If I call
"admin/Category" - to call "CategoryAdminController"
If I call
"Category" - to call "CategoryController"
It is …
0
votes
1answer
28 views
Adding my comments to the index view…Ruby on Rails
Ok...I am new to rails so this may be a stupid question but need help. I just watched and implemented Ryan Bates screencaset about setting up a blog. You can see it here http://med …
0
votes
2answers
38 views
How can I check if a controller was called using post or get?
In ASP.Net MVC, how can I check in a controller method, if it was called using post or get?
I am aware I can limit methods to being called only by post or by get - but how can I c …
0
votes
6answers
114 views
How to generate and transmit a JavaScript variable from MVC Controller?
I'm trying to fill a JSON object with a list of items from the database when the page first loads. This list of items comes from the database. Right now, I've strongly typed the Vi …
0
votes
2answers
48 views
Accessing ASP.NET MVC Model Data from external Javascript file
Hi,
I'm trying to use JQuery's $.getJSON to access Model data from the Controller, and build a JSON object in the javascript to use as the user adds and removes items from a list. …
0
votes
1answer
18 views
Controller specs in isolation mode and render :update
Hi folks,
I am using RSpec for writing my controller tests/specs.
I faced the problem, that the following code gets rendered:
render :update do |page|
page['middle_content'].r …
1
vote
2answers
33 views
How to test custom messages thrown back by a models validation in Rails
I have this validation in my user model.
validates_uniqueness_of :email, :case_sensitive => false,
:message => "Some funky message that ive cleverly written"
In my …
0
votes
4answers
72 views
Cakephp: how to access to model “variables” (mapped from db) from the controller after a set?
Ok i have this controller:
class ExampleController extends AppController {
var $name = 'Example';
public function test_me () {
$this->Example->Create();
…
0
votes
2answers
37 views
registering event listeners in a controller
I'm working on creating a simple MCV application, in order to understand MVC better. The problem I'm having is registering event listeners.
The way I see MVC is that the view dispa …
