Here''s a solution I found, but I wish there were a better way.
I froze my app to Rails 1.1.6, and edited active_record_helper.rb,
changing line 6 from:
@@field_error_proc = Proc.new{ |html_tag, instance| "<div
class=\"fieldWithErrors\">#{html_tag}</div>" }
to:
@@field_error_proc = Proc.new{ |html_tag, instance| "<div
class=\"fieldWithErrors\">#{html_tag} </div>" }
Note the addition of the just before the closing div tag.
Believe it or not this enables IE to display errors (red backgrounds)
around selects. I haven''t yet noticed any negative side-effects. But
this is a slippery slope, so like I said, I wish there were a better
way.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Talk" group.
To post to this group, send email to
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk
-~----------~----~----~----~------~----~------~--~---