search for: update_text

Displaying 2 results from an estimated 2 matches for "update_text".

2006 Feb 05
2
in_place_editor is missing load_text_url option
...that get their original text from the server (not from the DOM). So from the scriptaculous example, this code: <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> becomes this: <p id="editme2"><%= textilize( @fancy_text )</p> <%= in_place_editor( editme2'', :url => "update_text", :load_text_url => &...
2006 Feb 18
3
Edit in Place
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 = "Som...