Hi Patrick,
Thanks for contacting Syncfusion Products.
We have tried to replicate your issue with our project converter and hence we can replicate your mentioned issue. After validating your attached sample further, found that this issue is due to jQuery is referred twice in the layout.cshtml page. (i.e) One reference is in the <head> session and then other reference in the body session(via bundle). Hence we suggest you to remove the script in the body session to resolve this issue. Please find the code snippet for more reference.
|
layout.cshtml
@Scripts.Render("~/bundles/jquery") // remove this script reference
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
|
We have also modified your attached sample below.
Please check the above shared details, sample and let us know if you need any assistance.
Regards,
Arun P.