Hi, I was wondering if it'd be possible to chain different editing methods and send them to the server with a unique submit()
at the end
Something like:
editor.edit().remove().create().submit()
rather than:
editor.edit().submit();
editor.remove().submit();
editor.create().submit();
-
Alberto