similar to: Cancel my last question

Displaying 20 results from an estimated 300000 matches similar to: "Cancel my last question"

2006 Jan 02
5
How can one use GRUFF with locomotive ( I guess there is a wider question here, also)
Hi: I love Locomotive and use it exclusively for my rails projects. I''d like to install GRUFF and give it a try (a graph image creation package). I know I can do sudo gem install gruff from the command line for normal ruby and rails. How do I make gems available to Locomotive? bruce
2006 Jan 29
16
counting rows via associations
Hi: I have a table called clients and each client has many lists (a has_many and belongs_to has been created in the class. What I need to do is get a count of the rows in each list for each client. I was hoping I could do something like client.lists.count but it does not seem to work. Any suggestions? bruce
2005 Dec 31
6
I don''t even know how to ask the question (4 lines of code)
I create a hash using this line of code @x = Account.find(:all) I then want to go through each element in turn and add a key value pair to the end of it. I thought this would work, but it does not. @x.each do |a| a.merge({"balance"=>50} I used merge because I thought ''a'' would be a hash (how do you find out the type of an object?) I then guess it was
2006 Jan 19
3
A book we may wish to buy
Hi: Some French fellow posted a notice yesterday about a book that had come out. It''s called "Ruby on Rails" and is apparently by DHH & David Thomas. Is this a scam? If not, does anyone know where I can buy this book in English? I''ve searched the usual places but can''t turn anything up. Bruce
2006 Jan 01
11
Can rails make use of accesskeys?
I added :accesskey=>"D" to the html options hash of my link_to tag but nothing happened. Should I keep trying or is this not an option yet? bruce
2006 Jan 05
7
repost - Can one edit the file that generates the scaffolding.css?
I am reposting this because not only am I VERY interested in the answer but because I think it would also be useful to many, many people. We kind of have a house-style here, so it would be nice if the generated scaffold.css would accommodate that. My questions are? Is it possible? Is it safe? How? bruce
2006 Jan 08
0
Please cancel my question -further googling turned up the answer
For those who don''t know, you have to save the document so it is of a certain kind first eg. rhtml then the lia snippet is activated by simply typing lia and then hitting the tab key. bruce
2006 Jan 04
10
Is Webrick good enough?
Hi all, On the rails list I''ve seen that it''s hard to integrate Rails with Apache (especially apache2), that it''s hard to change the default port (3000), and that Apache runs Rails stuff slowly. Is it reasonable to run Rails stuff on Webrick while simultaneously running other stuff on Apache? How does one simultaneously run two rails applications on Webrick, when
2005 Dec 24
2
Trying to grasp the difference between local variables and instance variables/
Hi: Would it be fair to say (or completely out to lunch) that a local variable is local to a method and an instance variable is local to an object. Thus an instance variable is a sort of limited global variable or super-powered local variable. Its scope is larger than a local but smaller than a global. Or that it is a global within a limited domain (the object). or is it a whole lot
2006 Jan 22
3
dumping out mysql data only (no structure)
Is it possible? It is mentioned in AWDWR but I cannot find that option in the MySQL documentation. I can dump the whole db or just the structure, but I''d like to be able to dump just the contents. bruce
2006 Jan 06
8
How do I write a generator?
I''d like to take some advice and write a generator to change the scaffold.css. How do I do that? I looked on the wiki and googled it but have not found anything yet. Any help would be much appreciated. bruce
2006 Jan 08
1
How to insert snippets in textmate from the keyboard
I see an abbreviation in the menu called lia but how do I make it work. I have tried a fascinatingly large number of possibilities without success. I have searched the help file and googled the issue. bruce
2006 Jan 04
1
I''d like to edit the scaffolding file - is it possible?
I notice that I begin each project with a standard css file which is the one produced by scaffolding PLUS some other stuff. I could cut and paste a copy from an old project but I thought it would be "cooler" amongst other things (like more efficient) to just have the scaffold.css file be created for me. Is it possible? Is it safe(ish), What would I have to do? Thanks in
2006 Feb 04
1
Can I reset the cycle helper?
Hi: I have lines in a table I wish to stripe BUT, every now and then there is another type of line, a section header line. I''d like to be able to start the line after a section heading always as one of the two classes the cycle helper is cycling between. Is it possible? If so, how? bruce PS. I realise I could do this with ''odd_or_even'' or the %2 method (mod
2005 Jul 12
11
how to cancel/stop a script.aculo.us effect
I apologise for what is probably a totally noob question here, but I''m at a loss after pouring over the docs and the source code for prototype and scriptaculous... After you''ve started an effect, how do you access it to cancel or change it? I had assumed it was something like this: myEffect = new Effect.Appear(element, {duration:1.5}); myEffect.cancel(); ... but that
2005 Dec 08
7
Help shut down webbrick on mac?
Hello, I just installed radrails and it will not run the webbrick because a version is already running on my mac. I do not know how to shut down the mac version. Thanks Regards, Frank Rocco farocco-H+0wwilmMs3R7s880joybQ@public.gmane.org
2006 Jan 03
4
Would someone like to tell me why this code will not solve my problem? (it''s short)
I am building an invoicing system but cannot use the auto_increment field to determine the invoice number (because they are running 3 different companies off the one system. I need to find the last invoice number from any given company and then add 1 to it to get the next invoice number. BUT, there is a unique case on the very first invoice produced because there is no earlier invoice
2005 Dec 15
5
Action Mailer - connection refused - connect(2)
hi: I am on Mac OSX 10.4 using locomotive. My ActionMailer configuration is ActionMailer::Base.delivery_method = :smtp # or :sendmail or test ActionMailer::Base.server_settings = { :address => "mail.albertafilmworks.com", :port => 25, :domain => "brucebalmercanada.com" } ActionMailer::Base.perform_deliveries = true
2005 Dec 20
1
How do I persist a value in a collection_select
Hi: I am using a collection_select to select which client''s records I want. Everything works properly EXCEPT the list box reverts to its initial value rather than holding onto the client whose records I am now viewing. ?
2005 Dec 09
1
No comprendo - scaffold producing strange results
Hi: I have a working invoicing application. All was well. Then I added another table to the database. Following that I use script/generate scaffold User I was hoping that this would generated the usual stuff but just for this model. It did. I can see all the views including _form, new, list etc. However, athough I can access list as per normal, when I try to create a new user it