-
See the reply to this question on google groups. Is reagent creating more components than necessary compared to om?
https://groups.google.com/forum/#!topic/clojurescript/sWJxg-2cahQ
-
Hi,
I'm currently working on a simple wrapper for [react-router](https://github.com/rackt/react-router) to be used in [reagent](https://github.com/reagent-project/reagent)
I'm fairly new to the cloj…
-
If an input uses the `:onChange` callback it is uncontrolled even if `:value` is specified. Here's a small reproducible test:
``` clojure
(ns om-controlled.core
(:require [om.core :as om :include-m…
-
TL;DR I'm trying to use bind-fields for input validation on elements that are not always on the page. I can't get it to work.
Details: My page is a single-page app with a menu bar in the header that …
-
This is very interesting work. One thing I was thinking about was dynamic registration / unregistration of event handlers. How do you feel about this? Would you take a pull request for unregistration?…
-
Virtual DOM like libraries are gaining traction in JavaScript / ClojureScript world thanks to their hability to simplify UI construction while still being efficient.
Hiccup representation and macro co…
-
This line is fine for keywords and strings, but bad for other cases https://github.com/yogthos/json-html/blob/master/src-cljs/json_html/core.cljs#L35
-
Investigate how (one?) way binding could be provided. This is not about implementing a new binding mechanism but allowing existing ones to be used.
The main goal is to unify the syntax to define the d…
-
The following does not seem to work. I'm fairly new to Reagent, so my question is, should it work?
``` clojure
(def show? (atom true))
(defn ^:export run []
(reagent/render-component
[:div (str…
-
I upgraded from 0.1.1 to 0.2.3 and got an error "Doesn't support name". I traced this down to have a `:label` without an `:id` - which used to work in 0.1.1.
I don't want the field's value to appear …