WebHare 4.29 adds the 'form prologue' for standard and custom forms. The prologue consists of the following:
- the wh-anchor node (for positioning below 'fixed' headers)
- any hidden fields
- the wh-form__prologue node
We noticed that the 'jump-to-top' between pages often breaks because of 'custom' additions to the top of the forms (such as additional explanations and page navigation) which wasn't wrapped in a group. So, the anchor node is a new addition to make sure forms properly jump to the 'top' when changing between pages.
The last node is intended for any custom insertions you would normally do at the top of the form such as page navigation:
So, what do we expect from WebHare developers? The upcoming 4.28.2 and 4.29 will add these new nodes to the top of standard forms, but you'll still need to add a `[form.formprologue]` to any custom forms where you manually setup the `<form>` tag.
You may also need to fix any JavaScripts that tries to insert elements to the top of the forms as they will probably want to insert themselves after the wh-anchor tag. Injecting new elements into the wh-form__prologue is often the easiest solution.