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
well I digged around your JS code and found that you do not "keep" the state when you "DELETE/SORT/CLONE" an entry/module, if you trigger it in your render function everything works..
: obj.closest('form').trigger('keep');
fn.render = function(obj) {
var output = '';
var fields = obj.find('.egr-presentation').children();
var out = '';
var textarea = obj.find('.egr-output').find('textarea');
out = fn.renderLoop(fields, out, level, true);
textarea.val(out);
textarea.blur();
obj.closest('form').trigger('keep');
};
I you sort fields and leave the page without saving, all order are lost.
It does not save the sorting order.
The text was updated successfully, but these errors were encountered: