I'm working through the ASP.NET MVC 6 tutorials and getting used to the framework. I have a requirement to add a color picker to one of my views. Since the HTML5 type 'color' isn't supported on IE I can't use that.
Instead I thought I'd use the bootstrap-colorpicker plugin here: http://mjolnic.com/bootstrap-colorpicker/.
I've installed the package via NPM but can't work out how to reference it in the View
. Should the package be installing files in the wwwroot\libs
folder? Or do I need to copy these in manually and reference in the @section Scripts
?
I've also installed it using NuGet PM and it appears under References
but I'm in the same boat wondering how to reference it in the actual View
.