Displaying 1 result from an estimated 1 matches for "panel_tab_searchresult".
Did you mean:
panel_tab_searchresults
2006 Apr 07
0
How to combine rjs with ActiveView::Helper?
Suppose in controller:
class ArticlesController < ApplicationController
def search
...
render :update do|page|
page.replace_html ''panel_tab_searchresults'',:partial => ''article'',
:object =>@articles
end
end
And i want to add ajax styled Paginator to the view,i have got the
method and i can work well directly used in view:
<%= pagination_links_remote @pages, {:params => { :action =>...