I have created a very simple DatePicker using .NET Core. Here is my model:
public class MemberViewModel { public string Name { get; set; } [
You are including jQuery twice. The second jQuery inclusion overwrites your $ variable, removing the jQuery ui plugins you loaded beforehand.
$
and
jQuery plugins work by extending the $ variable. You second inclusion of jQuery destroys the plugins previously loaded.