reagent-forms icon indicating copy to clipboard operation
reagent-forms copied to clipboard

Bootstrap form components for Reagent

Results 9 reagent-forms issues
Sort by recently updated
recently updated
newest added

With the re-framing example, everything is handled through the `events` function: ``` (def events {:get (fn [path] @(re-frame/subscribe [:value path])) :save! (fn [path value] (re-frame/dispatch [:set-value path value])) :update! (fn...

Hi - I got the unit tests to run with phantom & java 8, but had 11 test failures. Am I missing something? Alan ------------------------------------------------- ``` ~/gh/reagent-forms > lein clean;...

The `:select` list control doesn't display the correct value when initiated with state. For example, if I pass `(atom {:status "P"}) into this form: ``` clojure (row "Status" [:select.form-control {:field...

help wanted

Having a time picker (hours/minutes) on the date picker would be awesome.

enhancement
help wanted

Currently, inputs recompute on each key press, it would be better to update inputs once when the user finishes typing.

enhancement

Hello, I would like to have the possibility to add a fake placeholder to select lists. I found this : http://stackoverflow.com/questions/5805059/how-do-i-make-a-placeholder-for-a-select-box So with reagent 0.5.1 and reagent-forms 0.5.22, this was...

enhancement
help wanted

Hey there! I'm trying to track the state change of an input to apply various CSS classes to it based on valid/invalid state. For some reason it doesn't seem like...

enhancement
help wanted

I believe I'm hitting similar behavior to a few of the other issues, but it's quite unclear how to resolve. I have a form as so: ``` (defn some-form [foo]...

enhancement
help wanted

How to implement master-detail form? Frequent problem.

enhancement
help wanted