Displaying 3 results from an estimated 3 matches for "server_pages".
Did you mean:
server_names
2006 Apr 10
9
Pagination with letter (A B C D ... Z)
Hi there,
Is there a neat and easy way to implement pagination with letters
rather than numbers eg :
A B C D ... Z
Rob
2006 Jun 08
0
Cleaner way to do this
is there a cleaner way to achieve this? // Is this the correct way?
def show_servers
@server_pages, @switch_servers = paginate :servers, :conditions=>["id in
(select server_id from server_interfaces where
server_interfaces.switch_interface_id in (select id from switch_interfaces
where switch_id = ?) )",params[:id]], :per_page => 20, :order => "name"
render :layout...
2007 Jul 20
4
the value in text_field helper
I have been working on this small, minute, part on my project and it all
hinges on setting the value in a text_field helper. Saying:
<%= text_field ''user'', ''company'', :value => @login %>
does not do it. When I go and look at the raw html, there is no value
there and "value" is an attribute of the input tag, im pretty sure. I
really like