Fabian Hiller

Results 1169 comments of Fabian Hiller

Have you read the info in the [docs](https://modularforms.dev/qwik/guides/add-fields-to-form#field-state) about this? Technically, of course, I can change the behavior. However, as a developer, you can already control the behavior through various...

Thank you very much for your feedback. I have received feedback on the `active` state from time to time and understand that it sometimes leads to awkward problems. Maybe your...

Yes, SSR works. Since our only dependency is SolidJS, you can pre-render the form on the server. However, validation only works on the client so far. Whether it works with...

Since the documentation for SolidStart was not yet ready at the time of the development of this library, I could unfortunately not yet consider `createRouteAction`. But I will inform myself...

Thank you for the information. I will give you a first assessment by next week.

Hi @thibaudgrosjean. The problem could be that you are using the spread operator at ``. This can break the fine-graind reacktivity. It doesn't matter if you use SolidJS with or...

You can also join the SolidJS Discord server and contact me there: https://discord.com/invite/solidjs

In the end, this library only uses SolidJS and the browser API. There should only be problems if the required JavaScript code is not passed to the browser. For example...

@EuSouVoce I have looked at `createRouteAction` and `createServerAction$` from SolidStart. An integration seems to me possible without big changes. However, I need to go deeper into SolidStart for this. Currently,...

The first step is done. With v0.9 it is now possible to validate the form with a Zod schema. You can find more about this [here](https://modularforms.dev/guides/validate-your-fields).