Simon, Instead of using the default operation of jeditable, I just past in a function and used jquery.post to send the data to the controller.
In Javascript I just do: jQuery(".EDIT").editable(function(value,settings){ //Grab the id you want the value of the field is stored in value jQuery.post(//URL to controller,function.json, postdata, callback if required) return(value); //This takes the new value typed in the editable area and replaces the old value. },{ tooltip:'Click to edit in place...' //Add other settings here }); HTH, Brent On Friday, 22 June 2012 05:36:58 UTC-6, Simon Ashley wrote: > > Does anyone have any native python/ web2py code for a jeditable call in a > table that they are willing to share i.e. a web2py version of save.php?