You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the issue that whenever I save a value, and my server has returned the json, only the data-field-value parameter gets updated but not the tag content itself.
I think the line... this.el.trigger('inplace:done', json);
...should rather be:
this
.el
.html(this.element.getAttribute('data-field-value'))
.trigger('inplace:done', json);
At least that fixes it for me.
Cheers,
Ulf
The text was updated successfully, but these errors were encountered:
I have the issue that whenever I save a value, and my server has returned the json, only the
data-field-value
parameter gets updated but not the tag content itself.I think the line...
this.el.trigger('inplace:done', json);
...should rather be:
At least that fixes it for me.
Cheers,
Ulf
The text was updated successfully, but these errors were encountered: