I am trying to use an html input field with the following code:
<td><input style="width: 80px" type="time" placeholder="HH:MM" required="" data-bind="value: FirstManifest"></td>
The backend C# object containing the FirstManifest property (DateTime?) is populated correctly but when I bind it to a knock view model, the property in the model FirstManifest looks like this
"/Date(1464748440000)/"
How can I convert this so my input only shows the datetime format HH:MM?