Fabian Hiller
Fabian Hiller
But I expect this to be fixed with the Modular Forms rewrite planned for the next few months, as I plan to change the way these values are stored.
Hint: If you encounter this problem, it may help to access `.response` via the `?` operator. Here is an example: ```tsx {form.response?.message} ```
This behavior is intentional and probably expected in most cases. However, I agree that this should be configurable or we should switch to your approach in the long run. For...
Thanks for creating this PR. I plan to rewrite Modular Forms in January. I will add the file extensions then. Would it help you to merge this PR before?
I don't quite understand the problem you are describing. As described [here](https://modularforms.dev/solid/guides/validate-your-fields), small helper functions can be used for validation. For individual validations [`custom`](https://github.com/fabian-hiller/modular-forms/blob/main/packages/solid/src/validation/custom.ts) can be used. Alternatively you can...
Thanks for your description. If I understand correctly, you want to outsource the generation of the error message instead of passing it as an argument. I don't know if I...
Thank you for your detailed feedback. I'll give it some thought.
This is a general problem with Modular Forms for SolidJS that I am trying to fix in January. The problem is that the library only initializes a field when you...
Thanks for the info.
The problem behind this bug is that a field must first be initialized by using the `Field` component or some other field specific method like `getValue`, since `getValues` can only...