- Sep 4, 2006
- 16,800
- 45
- 91
I'm using jQuery and Bootstrap. I need a date picker to choose dates easily on a form. There just so happens to be Bootstrap 3 datetimepicker. ( http://eonasdan.github.io/bootstrap-datetimepicker/ ) It's nice and all but it uses Moment.js (with its Locales) in addition. It's not just jQuery + Bootstrap (Bootstrap requires jQuery). Right now, my project only has the jQuery and Bootstrap libraries added to it. I'll be adding D3.js soon enough and I don't want to add a bunch of libraries to my project unless I'm using them extensively.
To me, that was the point where I started to question whether or not I should just make my own date picker.
Benefits of making my own date picker:
Downsides:
Thoughts?
To me, that was the point where I started to question whether or not I should just make my own date picker.
Benefits of making my own date picker:
- I could make another github project out of it. (More the merrier, right?) I only have one project on github right now and it's the one I am working on.
- I could make one that doesn't require another large library.
- Potentially could have my code used by quite a few people who are looking for something similar.
Downsides:
- It will take a lot more time than using the premade option. A lot more.
- Who cares?
Thoughts?