def show_details
@sd_ticket = ServiceDeskTicket.find(params[:id])
@servicedesk_cis = @sd_ticket.service_desk_cis
end
What I need is a pagination for @servicedesk_cis using the custom
pagination..How can i give offset and limit to this?
I have successfully done previously custom pagination in another def as
below
def search_sd_ticket
@search_sd_ui_hash=params[:sd_ticket]
@sd_ticket_number=@search_sd_ui_hash[:number]
@sd_ticket_name = @search_sd_ui_hash[:name]
# step 1: set the variables you''ll need
page = (params[:page] ||= 1).to_i
items_per_page = 20
offset = (page - 1) * items_per_page
# step 2: instead of performing the full find, just find the
record count
@search_sd_ticket_count_result
ServiceDeskTicket.find_where(:all,:select=>''count(*) as
count1'' ) do
|sd|
sd.number.downcase =~
"%"+@sd_ticket_number.downcase+"%" if
!@sd_ticket_number.nil?
sd.name== @sd_ticket_name
end
record_count = @search_sd_ticket_count_result[0].count1.to_i
# step 3: create a Paginator, the second variable has to be
the number of ALL items on all pages
@search_sd_ticket_result_pages = Paginator.new(self,
record_count, items_per_page, page)
# step 4: only find the requested subset of
@search_sd_ticket_result
@search_sd_ticket_result
ServiceDeskTicket.find_where(:all,:offset=>offset,:limit=>items_per_page
) do |sd|
sd.number.downcase =~
"%"+@sd_ticket_number.downcase+"%" if
!@sd_ticket_number.nil?
sd.name== @sd_ticket_name
end
end
But here i directly gave offset and limit in find_where.So how can i
apply this to my case?ie,
@servicedesk_cis = @sd_ticket.service_desk_cis #suppose contain 100
total records and i need as in my suucessful case 20 records per page..
Please help
Sijo
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---