Re: [ClojureScript] [Om] [om-bootstrap] Programatically populate items in om-bootstrap dropdown

2014-09-05 Thread Jamie Orchard-Hays
Tom, while I'm also using Sablono, you might also have a look at om-tools from Prismatic: https://github.com/Prismatic/om-tools On Sep 5, 2014, at 12:59 PM, Tom George wrote: > Sean and Jack, > > Thanks a lot for your responses. > > Sean - I like the look of sablono over om.dom, I think I'm

Re: [ClojureScript] [Om] [om-bootstrap] Programatically populate items in om-bootstrap dropdown

2014-09-04 Thread Sean Corfield
I'm using Om/Sente/Sablono and working with dynamic menus. Here's my navigation component (like your dropdown): (defn navigation "Primary navigation." [app-state self] (reify om/IRenderState (render-state [this state] (html [:div {:id "main-nav"}

[ClojureScript] [Om] [om-bootstrap] Programatically populate items in om-bootstrap dropdown

2014-09-04 Thread Tom George
Hi, I'm doing my first real work in clojurescript/om. I have a little web service that queries a database and returns a JSON message of all known schema owners. I want to use this data source to populate a dropdown. The demo page for om-bootstrap is really nice, but in the examples for popul