Needs review
Project:
jEditable inline content editing
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
28 Jan 2011 at 18:39 UTC
Updated:
7 Sep 2022 at 11:06 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
giorgoskI have it working with JQuery UI 1.7.3 and jQuery Update 1.3.2
so its not a jquery compatibility issue
we need to find out what it is that it bugs it
here is my initial thought but closed the ticket #1040686: does not seem to work with VBO on integer field
I have also tried disabling all optimizations from admin/settings/performance
(css/js compression/minifying) and cleared cache but no luck
please report any findings
Comment #2
Shinzon commentedCan someone please, please fix this. Module is great but not working in my case. Can't save new data, after clicking on save nothing happened, just showing old input.
Comment #3
Dave.Ingram commentedHere's some details I need:
1. Is firebug giving any error messages?
2. What type of field(s) have you tried this on?
3. Are you sure you have edit access to the node type and the node fields?
I am running this on a site that uses jQuery Update and jQuery UI and all works fine, so there must be something else going on.
Comment #4
kevin.mcnamee@mailbox.org commentedClosing this as it has been a year since it was active. Reopen if the issue is still a problem.
Comment #5
svnindia commentedme too facing the same issue..
After clicking save it show only old data..
If I fix it will give you the patch
Comment #6
svnindia commentedI have tried with node_save instead of drupal_execute and it works
Comment #7
tinflute commentedIn reply to #3:
1. firebug give this response:
2. I have tried this on a field types boolean, text, numeric, date with formatter jEditable textfield in my view.
3. Verified that I have permission to the node, view, and jEditable widgets.
I have the same bug: jEditable widget appears, but save has no effect, field reverts to original value. No throbber.
Note that I am running this on 7.x-1.x-dev version.
Comment #8
tinflute commentedsvnindia could you explain a little more what you did...
where in the code did you replace drupal_execute with node_save?
Comment #9
m.weinhold@module-7.com commentedmaybe the problem is that you use a url like www.my-domain.com/your-drupal-installation? If i use this it do not work, but if i use only my-domain than it saves all values.
Comment #10
leturan commentedm.weinhold theory is true : adding Drupal.settings.basePath + in front of all urls in just worked.
See below the changed lines :
drupal_jeditable.js:4 $('.jeditable-textfield', context).editable(Drupal.settings.basePath + '/jeditable/ajax/save', {
drupal_jeditable.js:11 $('.jeditable-textarea', context).editable(Drupal.settings.basePath + '/jeditable/ajax/save', {
drupal_jeditable.js:18 $('.jeditable-select', context).editable(Drupal.settings.basePath + '/jeditable/ajax/save', {
drupal_jeditable.js:19 loadurl : Drupal.settings.basePath + '/jeditable/ajax/load',
Comment #11
mrdalesmith commentedHere's a patch to the js file for the 7x version as mentioned above.
Comment #12
katrien_w commentedSorry, no success with this patch. Trying to save now, I get an ajax error.
Comment #13
nehajyoti commentedThe patch doesn't get apply cleanly, hence marking it as needs work.
Comment #14
suresh prabhu parkala commentedA re-rolled patch against the latest 7.x-1.x. Please review.