That's an interesting suggestion.
I do distinguish buttons by their name on the server side, however with the actual "submit" button (save the entire thing) I **need to re-render the whole form**, because I expect to actually change page, but if it fails it means there has been a validation issue somewhere and I don't know which field has the error, so I need to render the entire thing again.
This means that no matter what, if I use an up-target in the form with (e.g.) "form.myclass, place-to-append:append", it will always re-render the whole form.
I'm thinking: what happens if I render only an HTML element for the `place-to-append`, would it still re-render the whole form or would it ignore the first selector? If it ignores the first selector it can work, but from my understanding unpoly always goes back to "default", which means all the way up to `body`.
I can't handle it entirely from JS because I need some stuff that's in the form to determine if you can add more input fields (there is a limit, plus some pre-populated data).