
Untitled
By: a guest on
Feb 22nd, 2012 | syntax:
None | size: 0.64 KB | hits: 12 | expires: Never
<h3><%= link_to_remote 'All Plans', :url => {:action => 'get_plans', :tab => 'all'}, :update => 'socialcalendar' %></h3>
<h3><%= link_to_remote 'Me', :url => {:action => 'get_plans', :tab => 'user'}, :update => 'socialcalendar' %></h3>
<h3><%= link_to_remote 'Friends', :url => {:action => 'get_plans', :tab => 'friends'}, :update => 'socialcalendar' %></h3>
<select onchange="refreshpage">
<option <%= "selected" if @plans_tab == :all %>>All upcoming plans</option>
<option <%= "selected" if @plans_tab == :user %>>My plans only</option>
<option <%= "selected" if @plans_tab == :friends %>>Friends plans only</option>
</select>