Tagged Questions

0
votes
3answers
35 views

How do i create a form that inputs multiple items of a model?

I have a simple point of sale application written in ruby and rails, and hobo. Originally intended to be for only one product at the time, now the client wants to add multiple pro …
1
vote
4answers
64 views

rails/ruby - how to rescue ActionView::TemplateError

i am testing an application built with rails and from time to time get bugs when it happens, ActionView::TemplateError occurs and gets logged in log/production.log how do i catch …
0
votes
2answers
50 views

Load ruby on rails template from database

I wonder if there is a way for me to store ruby on rails view files into database store and have that fetched directly from there. The reason is I want to create a CMS with all the …
1
vote
1answer
130 views

Rails form with multiple nested models causes issues with radio groups

I'm having a problem with nested model forms that contain radio buttons, when I have multiple models all the radio buttons are treated as being in the same group. My model contain …
1
vote
3answers
103 views

How can I stop the password field being pre-populated on edit?

I have this problem all the time in my rails apps and I still need the correct solution. Whenever a user edits their own record the password field is being populated. I suspect its …
0
votes
2answers
155 views

Rails XML builder with no pretty-printing (i.e. minified XML)

I am using Builder::XmlMarkup to produce data structures in XML format for a RESTful API server. Recently, I discovered a bug where the pretty-printing from Builder::XmlMarkup pro …
0
votes
2answers
61 views

Form Action garbled, Rails 2.3.3

I seem to have a problem that I can't find the solution for myself, I hope someone can help. I have a form defined like so: <% form_for @leads do |f| %> I have a resourc …
0
votes
5answers
157 views

One controller, different views for normal users and admins

Hello everyone, in my application, I have a "User" model. Each user can have multiple (email) addresses which are defined in the model "Address": Class User < ActiveRecord::Ba …
0
votes
5answers
345 views

Rails: Preselect a value in ActionView-Helper ‘collection_select’

I'm trying to get the ActionView-Helper collection_select to take a value that will be preselected in the dropdown-menu. Neither (:selected in the html-option-hash) <%= collec …
1
vote
1answer
1k views

Rails form_tag form writing - with non-active record model

Hey Rails People, I'm somewhat of a Rails newbie. I'm writing a couchrest-rails app, so am not using activerecord for this model. I just figured out that that means that form_ …
0
votes
3answers
597 views

Rails validation and ‘fieldWithErrors’ wrapping select tags

Is it normal behaviour to not get the <div class="fieldWithErrors"> wrapped arround select tags that have validation errors? I personally see no reason why the select tags sh …
0
votes
1answer
87 views

Where does Rails use REXML lib and how to require that part?

I have a gem that uses some of the Rails libs, including action_view and active_controller. Though I require those libs, all tests fail when trying to call some has_text? method, w …
0
votes
3answers
454 views

render default template when requested template is missing in Rails

For a plugin I want to hack the following feature into Rails: When a (partial) template does not exist (regardless of the format) I want to render a default template. So say I ca …
0
votes
2answers
173 views

How do I expire a view cached fragment from console?

Something like Rails.cache.delete('site_search_form') doesn't seem to work. Is this possible? Thanks.
4
votes
2answers
686 views

Nested Object w/ Checkboxes - mass-assignment even with accepts_nested_attributes_for ?

I thought that there should have been a simple solution to this, given that Rails 2.3 has this newfangled nested forms feature. Basically I want to create or update a user and assi …

1 2 next
15 30 50 per page