I have this code:
<%=_('Client')%> |
---|
<%=h repair_ticket.client.name %> |
I want only to show the first 10 letters of client.name. Can I do that
only with HTML? Should I use Ruby?
I have this code:
<%=_('Client')%> |
---|
<%=h repair_ticket.client.name %> |
I want only to show the first 10 letters of client.name. Can I do that
only with HTML? Should I use Ruby?
On 25 Apr 2008, at 12:19, John S. wrote:
I want only to show the first 10 letters of client.name. Can I do that
only with HTML? Should I use Ruby?
rails has the truncate helper, so in this case
truncate(repair_ticket.client.name, 10)
Fred
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs