VxFormGenerator
VxFormGenerator copied to clipboard
The library contains a component, that nests itself into the Blazor EditForm instead of a wrapper around the EditForm. The component is able to generate a form based on a POCO or a ExpandoObject. Beca...
I am unable to make the library work with .Net6 Model based forms work as expected. 1) git clone repo 2) update the project solutions to target .net 6 in...
I was playing with your library and realized that generated forms have labels that are not tied to the corresponding input controls through IDs. This results in screen readers not...
There are cases where we only display field Foo if the user enters value x into field Bar. The most common example is probably a dropdown with an "other" selection...
**Requirements:** At the moment the generator supports only enums as a list. this needs to be extended with the following data types: - IEnumerator - Dictionary - Dictonary (Adds expression...
By popular rquest add a WASM example. VxFormgenerator should support WASM.
At the moment VxFormGenerator supports rendering a Form based on a ExpandoObject. This allows the EditForm components to store the inputted values. Approach described here: https://github.com/Aaltuj/VxFormGenerator/issues/16#issuecomment-768117815
Let's have a discussion about the road to get to the kind of functionality as requested in issue #7 . > Also would you be able to shed some light...
Hi I was trying to render dynamic form input controls using this [VxFormGenerator] library, But Input controls are not rendered as multi-columns despite providing "RowId" and "Colspan" attributes. Because of...
Dynamic Based Form Demo does not work :(  A good example of the implementation of dynamic forms on .Net 6 is here: https://medium.com/codex/blazor-webassembly-dynamic-creation-of-components-based-on-json-configuration-d1df664e5e19
I was wondering if it is possible to add a custom Id to the Input field. ` [VcInputId("name")] public string Name ` So that this id would added to the...