Hi,
I followed your tutorial on "Copying Client Side Resources" (https://docs.telerik.com/aspnet-core/getting-started/getting-started-copy-client-resources). I'm using the last option, using NPM and webpack. I'm also including vanilla Bootstrap 4 in my project.
It seems that the bundled version of jQuery that is included in the generated "bundle.js" file from your instructions isn't working with Bootstrap 4. My Bootstrap navbar is now broken (none of the Javascript components work properly -- for example, responsive navbar won't expand). When I explicitly include jQuery (again) in my layout, the navbar works but all of my Kendo components are now broken.
How can I reconcile this? In what order should I place my CSS and JS? How can I use jQuery from the bundle with my project?
Here is my code snippet.
01.
<
html
>
02.
<
head
>
03.
...
04.
<
link
href
=
"~/lib/twitter-bootstrap/css/bootstrap.min.css"
rel
=
"stylesheet"
/>
05.
<
script
src
=
"~/bundle.js"
></
script
>
06.
...
07.
</
head
>
08.
<
body
>
09.
...
10.
<
script
src
=
"~/lib/twitter-bootstrap/js/bootstrap.bundle.min.js"
></
script
>
11.
</
body
>
12.
</
html
>
Thanks,
Brian