I tried implementing the features in RailsCast 147 Sortable Lists and 302 In-Place Editing, but after having followed every step along the way, the effects that showed on Ryan's screen was different from mine.
In the case of 302 In-Place Editing, clicking on the supposedly in-place-editing-enabled text had no effects!
I had simple code to implement the best_in_place in views/users/show.html.erb
<h1>
<%= gravatar_for @user %>
<%= @user.name %>
</h1>
<% firstname = @user.name.split(" ")[0] %>
<p>
<%= best_in_place @user, :email %>
</p>
And in the case of 147 Sortable Lists, the line <%= sortable_element("faq") %>
gave me an undefined method 'sortable_element'
error.
Please help!