Hi there guys, as the title states, i am try to add a placeholder to a date field.
<div class="form-group"> @(Html.Kendo().DatePicker() .Name("DateReceived") .Format("dd-MMM-yy") .DateInput() .HtmlAttributes(new { style = "width: 90%", title = "DateReceived", placeholder="Enter A Date"}) )</div>
but regardless of what i do, it doesn't show the placeholder value. What can i do to remedy this?
