Displaying 5 results from an estimated 5 matches for "savickas".
2006 May 18
4
Problems using ''select''
...uot;owner" and submit the form
it does not make current owner selected in combo box.
>From Rails documentation I understood that you had to have
@filter.owner = some_value
to make it selected, but it doesn''t seem to work. Maybe this is only
for ActiveRecord descendants?
TIA,
Domas Savickas
2006 Nov 13
5
Routes problem
I want to connect default route to controller Report::SalesController,
so I have line:
map.connect '''', :controller => ''report/sales''
in config/routes.rb
SalesController is in app/controllers/report/sales.rb
and is declared as:
class Report::SalesController < ApplicationController
...
end
The problem is that when I try to open root url of my application I
2006 May 19
2
where can I find a list of all available rake functions for Rails
Hi all,
Do you know where can I find a list of all available rake functions for
Rails.
Many thanks.
Yi
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060519/45a2ae96/attachment.html
2006 Nov 24
14
CHM Documentation for Rails 1.2.0 - RC1
Since the first release candidate of Rails 1.2.0 was announced
yesterday, I decided to update my CHM documentation file for this
release. You can find the updated file via my CHM Documentation
Project Page [1], or you can download the file directly from here:
http://delynnberry.com/assets/2006/11/24/rails-documentation-1-2-0-pre-release.chm.
[1] -
2006 Oct 13
2
Splitting controller
I''m trying to split controller into several files. I tried extracting
methods into separate files and then requiring them in main
controller, but this doesn''t seem to work.
controllers/reports/sales_reports.rb:
class ReportController < ApplicationController
def sales
end
end
controllers/reports/purchases_reports.rb:
class ReportController < ApplicationController
def