Reputation: 8491
What am I missing here?
I am using ASP.NET MVC 5, downloaded the JqueryUI combined via Nuget package.
As image below, there's no error reference for file css/js but the close button is not showing.
Any help would be much appreciated. Thank you!
EDIT
I have also included the path for bundle.
Upvotes: 0
Views: 214
Reputation: 8539
it looks like you have bootstrap also included into your project. It got conflict with jQuery-UI.
Do this:
$(document).ready(function () {
if ($.fn.button.noConflict) {
$.fn.btn = $.fn.button.noConflict();
}
});
Upvotes: 1