I am not very good at jQuery but decided to use jEditable plugin for my site because I thought it looked good and solved the purpose. However, I am in a bit of a tangle now.
I used this plugin to edit data and the edited data is sent to the DB and some fields are updated by it. the Stored procedure that updates these fields is returning some data back. I would like to have this data returned back to me. I would just like to see the returned data in an 'alert' statement first, then I can take it from there.
The callback method of this plugin just has value, and settings.
Is there any way to get some data back from the server-side while using this plugin?
Is the URL you are submitting the updates to (which will be some sort of dynamic page such as PHP, JSP, a Java servlet, etc) adding the return value from the stored procedure to the response? If so, I'd expect that data to show up in the "value" field that they pass to the callback.
When I use the jEditable online demo, the response just includes the updated text, but that's a function of the particular PHP code they're using and doesn't have anything to do with the jEditable javascript code.
I've been working in classic ASP trying to solve this problem too, and figured others like me may end up here too. Here's how I've solved this issue in classic ASP:
Failed server validation... response from whatever.asp
Whatever error message whatever.asp sent can be accessed through
onerror:
, and the field will be reset to the original value.(and if the value passes server validation, just response.write whatever the updated value is)
I have done exactly this for my site. This should get you started.
You need to return a Json response of the form
{ "Message" = "FOO" }
And that will be displayed in the alert.
chinese user can see this blog : http://wxianfeng.com/2009/10/14/rails-in-place-edit-with-jquery
Seems like jEditable is a wrapper around jquery ajax methods. It should not be too difficult to replace all your jEditable calls with calls that use jquery's native ajax method.
You can replace jEditable's callback named 'callback' with 'success' which is the callback's name in jquery's ajax function.
The documentation says the first parameter of the 'callback' function is "value":
What the documentation does not say is that the "value" here is whatever the server writes out. It is not limited to the raw value. I send back a JSON-encoded structure, so the first line of my callback function is this:
And then I pull fields as needed from the updateInfo structure.