search for: cowgar

Displaying 13 results from an estimated 13 matches for "cowgar".

Did you mean: cougar
2006 Jul 20
3
AJAX Form, :postion => :bottom but replace when error?
...''s appended to the bottom of the table. However, when a validation error occurs, the error message and a whole new form is appended to the bottom of the existing form. If I fail again, the note_add_form div will then have three forms, etc... Is there a way to make this work? Jeremy Cowgar
2006 Jun 14
2
Date as INPUT not Selects
Greetings! Can anyone tell me how to use just a normal input field as a date entry? I can use a text_field tag, but that brings the date out in CCYY-MM-DD format. I would like to be able to simply key in my dates like mm/dd/ccyy format. Thanks, Jeremy
2006 Mar 30
25
TextMate for Rails development -- why?
Greetings, I am curious, I see quite a few references to using TextMate for rails development. I downloaded TextMate and used it for 30 days. I do not see what everyone is raving about. Snipplets are nice, but other editors do the same thing, some with much more power. Can anyone tell me what makes people draw to TextMate? Maybe I am missing the whole reason, I''d really like to
2006 Jul 21
4
Printed/PDF Reports (Text/Tabular/Summary) in Rails
The recent discussion about different graphing solutions made me think. What is everyone using for general reports? Currently I have a web based application at work that has roughly 20 different reports ranging from simple tabular data with totaling at the bottom to pretty, colorized, graphic logo''s,etc... going to clients, and finally complex ones I hate to think about such as
2006 Aug 19
1
Re: DB Auditing
On Saturday 19 August 2006 11:25, Jeremy Cowgar wrote: > A recent thread titled "DB record versioning/audit" made me post this > message: > > I''ve created a plugin called "acts_as_logged". There already is acts_as_audited. Michael -- Michael Schuerig mailto:michael@schuerig.de http://www.schuerig.de/m...
2006 Jul 02
1
Model postal mail addresses (internationally)?
What''s the best way to model postal mail addresses when the app is going to be used internationally? Jeremy Cowgar
2006 Jul 19
3
color picker
Is there any plugin or ajax controls for picking colors? Was looking around Couldn''t find anything -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060719/cb4bc40f/attachment-0001.html
2006 Jun 26
13
Why no forum app in rails yet?
Hi Guys, So creating a forums application seems like something that rails can handle easily and well, and whatever implementation that came to fruition would be head and shoulders above existing products like vBulliten and phpBB. Even the existing rails forums are using php-based forum products! An insult if you ask me. So my question -- is there any current development of a rails-based
2006 Jun 27
1
Utility App using rails models
...ntrally configured to connect to the database, it looks something like: ActiveRecord::Base.establish_connection({ :adapter => "postgresql", :database => ''ips2_development'', }) So, see the problem with acts_as_logged? Thanks for any info, Jeremy Cowgar
2006 Mar 25
67
Your Ruby IDE
Just a poll here i am looking for a good IDE for rails and wondering what you guys use? features i like in an ide code highlites auto code complete file browser Currently i am using dreamwever but the code highliting is really bad its also a pain to set up other doucment types such as .yml data config. -- Posted via http://www.ruby-forum.com/.
2006 Jun 15
0
Include JavaScript variable in <%= remote_function %> call?
How can I do this? For instance, something like: <script ...> function check_duplicate(name) { <%= remote_function :url => {:action => ''check_duplicate'', :name => name } %> } </script> Obviously the above is just a dummy mockup. I have much more complex (and complete) sections of code that need to accomplish a task like this. Anyone know of a
2006 Mar 24
1
Has and belongs to many ... howto in the view?
I have a project, it has members. I have the data modeled, the ActiveRecord setup but I''m running into a block as how to accomplish this in a view. I would like if when the Project is being edited to present a list of all users, and then have a checkbox beside each name. Those selected would be a member, those who are not, obviously would not be. I am, however, not closed to
2006 Mar 24
0
Time ago in words -- how to use in controller or model?
I have failed many times in figuring a way to make this work in my controller and/or model. Obviously works great in a view, but I was hoping to make use of it in other areas, not just the view. Thanks, Jeremy