darrenm
Wizard not submitting data on final step
aha - it wasn't that but it did point me in the right direction. The problem was not the uniqueness of the Placeholder name, it was using the same name for Placeholders as the Form state name. So using
Placeholder::make('name')
killed the form state for TextInput::make('name')
.
thanks for taking the time to look10 replies
Wizard not submitting data on final step
It's a bit of a monster, and a work-in-progress, but here's the entire thing: https://gist.github.com/dmlogic/748fc1ed8a4273b173de4fc8a7278d0e
10 replies
FileUpload field validation passes on upload but fails on submit
yeah I've been thinking that might be the workaround. I can see a hint that it's getting turned into an octet stream during the submission process.
But I've got over it for now with
->rules(['extensions:ico,png'])
(although that doesn't work on the client side)16 replies