how do you change the default placeholder of the datepicker class in bootstrap?
This is my current code and has the place holder of yyyy-mm-dd but I want to change it to something different like "Enter date"
@Html.TextBoxFor(m=> m.test, "{0:yy-MM-dd}", new { @class = "datepicker form-control" })
I tried
@Html.TextBoxFor(m=> m.test, "{0:yy-MM-dd}", new { @class = "datepicker form-control", placeholder = "Enter text" })
but that does not do the trick.
Any suggestions?