formative
formative copied to clipboard
Web forms for Clojure and ClojureScript - rendering, parsing, and validating
Hi, I saw ngFormBuilder from form.io and I think it is great for prototyping and fast form development. It would be great if Formative could have something like this. I...
Formative should have a built in credit card field, that spaces numbers by four and checks if the correct number of digits is entered.
When I try to render a checkbox I get an extra hidden input field. Is this necessary? ``` (form-core/render-form {:fields [{:name :some-nome :label "Some Label" :type :checkbox}] :values {} :submit-label...
Currently the problem rendering logic is hard coded to bootstrap flavor, and making this pluggable would be nice.
Manually syncing them does not seem feasible, so need to figure this one out...
Seems like current logic always will look up the dom based on the :name field, so the error and problem classes do not get added if an :id is specified....
Currently the rendering is dispatched as a multimethod, however if more built-in renderers get added to this project it will add significant cost in terms of code size because they...
There is the following undocumented behaviour that is works well with bootstrap, which would be nice to have it right in the readme. ``` clj (f/render-field {:name :my-text :data-x 10...