5 | 5 | Regarding the first vs. second page render: On the second page render, since the form is now bound, ```BoundField.value()``` returns the submitted data for the hidden initial value (as well as the displayed value) instead of the old initial value. Which seems a bit odd, since it means that data changes on any field with show_hidden_initial will first cause validation errors and then (on resubmit) simply be ignored. (That being said, I don't know that there would be a better way to handle this kind of data.) |