I need help using In Place Editor by script.aculo.us
#controller
def my_action
#get the text to display initially
@fancy_text = "Some fancy *bold* and _emphasized_ text."
end
def update_text
#save your text here, and return the saved value
@fancy_text = params[:value]
render :layout => false, :inline => "<%= textilize(
@fancy_text )
%>"
end
def return_unformatted_text
#get your text and return it without the formatting
@fancy_text = "Some fancy edited, *bold* and _emphasized_ text."
render :layout => false, :inline => "<%= @fancy_text
%>"
end
#view ( of my_action.rhtml )
<p id="editme2"><%= textilize( @fancy_text )</p>
<script language="JavaScript">
new Ajax.InPlaceEditor(''editme2'',
''update_text'',
{rows:15,cols:40,loadTextURL:''return_unformatted_text''});
</script>
They have this example at their site. What else should I do because if
doing just that, it doesn''t work.
Thanks
--
Posted via http://www.ruby-forum.com/.