User-462241089 posted
Does anybody know how to properly add a material design datepicker to a .Net MVC project?
In Angular apps, you have the option to
choose between different styles of datepickers out of the box. Unfortunately, .NET doesn't have that feature. Other common libraries like Bootstrap, which we are using, don't include styles for datepickers either.
There is a library called MaterialDesignBootstrap that has a great
material styled datepicker, but we are trying to avoid it because it is not well maintained and updates infrequently.
The best solution I could find was
materializecss' datepicker, but it has several quirks, isn't well updated, and is really just a stylesheet and some javascript that is copied into our project and feels like plagiarism. I am using this one now, but I would like to use something else or
make my own. Is there a tutorial on building a datepicker natively or is this sort of a dumb question?