Question

I am trying to run the bootstrap datepicker: http://www.eyecon.ro/bootstrap-datepicker/ in clojurescript, but always get an "undefined function" error when executing this code:

(let [elem (sel1 :#dateid)]
  (.datepicker elem))

I use dommy for selection of the dom element.

I setup a smallest not working example here: https://github.com/sveri/cljs-datepicker You can check it out and start it with: lein ring server and lein cljsbuild auto, then go to: localhost:3000

The answer is most probably pretty simple, but I just dont get it working. Any help is appreciated.

Best Regards, Sven

Was it helpful?

Solution

You need to use $ jquery function and string selector:

(let [elem (js/$ "#dateid")]
  (.datepicker elem))
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top