After studying I've learned JSON has no standard date literal, which surprised me. I've checked my code and database and it looks like the problem I have is the JSON portion and getting that to appear as MM/DD/YYYY in the datepicker field.
The start value of data.BoardStart is: "/Date(1454519004200)/"
So I'm parsing it using: var BoardStart = new Date(parseInt(data.BoardStart.replace("/Date(", "").replace(")/", ""), 10));
This outputs it to a something like wed feb 03 2016 10:03:24 gmt-0700 (mountain standard time)
This results in an error: BoardStart.format("MM-DD-YYYY");
Any suggestions would be appreciated