Re: [ClojureScript] Re: Dependent picklists using Reagent

2014-08-08 Thread Harsha
On Tuesday, August 5, 2014 7:33:15 PM UTC+5:30, Jonathon McKitrick wrote: > Exactly! > > > Damn ! The word picklist completely threw me off. https://github.com/tailrecursion/javelin was built for this sort of problem. In Mike's example you would have one cell holding all the ui data and 6 fo

[ClojureScript] Re: New visual debugger added to Coils Om framework

2014-08-08 Thread Harsha
ht you will see GUI fragments of the > current Om component, its code (in coils form) and the state passed into that > component: > > http://connecttous.co/connecttous/connecttous.html?livedebug=true This is neat. I have done something very similar with my framework, harsha-mudi/

[ClojureScript] Re: Dependent picklists using Reagent

2014-08-04 Thread Harsha
> I'm not familiar with that approach of using core.async. I'm simply using > callbacks to set the atom each select depends on. Is there a better way with > core.async? I'm afraid I can't really suggest much without concrete code. I may be giving a rather generic solution. Basically core.asyn

[ClojureScript] Re: Dependent picklists using Reagent

2014-08-02 Thread Harsha / Mr. Foo Bar
On Sunday, August 3, 2014 1:18:14 AM UTC+5:30, Jonathon McKitrick wrote: > I have three select I assume A B' and B'' C, are the pairs. B and B'' can have a common core.async. With that you can send, A -> B' , B' -> core.async -> B", B" -> C to get all your dependancies in order. --