Displaying 2 results from an estimated 2 matches for "communitycontroller".
Did you mean:
community_controller
2010 Apr 06
1
error with 'will_paginate' -- need help!
My controller is as follows:
class CommunityController < ApplicationController
helper :profile
def index
@title = "Community"
@letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".split("")
if params[:id]
@initial = params[:id]
@pages = Page.paginate :page => params[:page], :order =>
''last...
2012 May 22
4
undefined method `paginate'
I am working with Railsspace social networking book. I stuck in the
problem when i am doing paginate for the search result. It gives the
following error.
NoMethodError in CommunityController#index
undefined method `paginate'' for #<CommunityController:0x57436f0>
My Controller Index page coding is below
def index
@title = "Community"
@letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".split("")
if params[:id]
@initial = params[:id]
@pages, specs = pagi...