similar to: Applying css style to a link_to

Displaying 6 results from an estimated 6 matches similar to: "Applying css style to a link_to"

2005 Jul 16
14
Thoughts on Second-Tier Documentation
In the course of this argument, keep in mind that I think Rails is making excellent progress in the development of documentation and community. I am only trying to develop discussion of where we need to go next. A consistent theme we are seeing on this list, I believe, is frustration caused by the lack of second-tier documentation. So far we have... -- the various tutorials which are
2006 Mar 24
1
Multiple table relationships
Hello, I''m just starting out with some Rails development and have the following table structure. I understand how to do a two table has many join but I actually need to relate a third table. Here is my structure: components id name updated_at elements id name updated_at element_types id name updated_at components_elements component_id element_id
2005 Jul 11
0
Shouldn''t use autocomplete for absolute-positioned elements?
I''d like to tap in to the expertise here on this list. The autocompletion box at raildock.mytechsupport.com is a bit of a hack right now--the drop-down box is quite a ways off from where it should be, and it would be even further off if I hadn''t hacked controls.js to subtract a few pixels from its location on screen. Is there some guidelines for where and how to place a
2005 Jul 17
0
RE: link_to and CSS
What you want is a.linkCommand:hover, etc -----Original Message----- From: rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Shelby Westman Sent: Monday, 18 July 2005 2:20 AM To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: [Rails] link_to and CSS I am a bit confused about how
2006 Aug 02
2
Passing Ajax.InPlaceEditor options
I''ve followed the instructions in the Rails Recipe #1 and have the in_place_editor_field working but now I want to tweak how it looks and behaves. I''d like to be able to override the default yellow highlight color, which is done using the highlightcolor param according to the scriptaculous documentation (unless I''m missing something). I''m new to Ruby and Rails
2006 Aug 20
0
Re: Problem with overriding rails accessor methods
On 8/20/06, Paul Corcoran <prcorcoran-Wuw85uim5zDR7s880joybQ@public.gmane.org> wrote: > > > Hello all, > > I just encountered something that is not what I would expect. I > overrode an accessor method in my model class and within this method I > did a "super" call which failed. Of couse my real method would be doing > more but here is the basic code that