Search code examples
datepickerprototypejs

Prototype datepicker like Google Analytics


I found this Jquery based Datepicker and like it, however my app is pretty entangled with Prototype and I'm getting errors

Error: TypeError: element.dispatchEvent is not a function

Rather than spend time getting Jquery to play nicely with Protptype, is there a good Prototype based datepicker similar to what Google Analytics uses (or the one linked above)?

Edit: Following these directions, I added

        <script type="text/javascript"> 
             jQuery.noConflict()
         </script>

After both Prototype and JQuery libraries loaded. I'm not getting any errors now, but the datepicker is nonfunctional.


Solution

  • I decided to migrate everything to jquery. Problem solved. :)