I'm using jquery 1.11.3
with jquery-ui 1.11.4
and with bootstrap 3.3.5
.
All works fine except for standard close minibutton
on the jquery ui dialog
upper left corner.
The symbol "X" doesn't show on the button, nonetheless it works in closing the dialog.
Examining the markup created for the dialog, it really lacks the part that show the "X" icon.
The dialog is very simple:
$('#info').dialog({ autoOpen: true,
width: 700,
title: 'User Info',
position: { my: "center middle", at: "center middle", of: document.body} }
);
I'm aware of the compatibility issues between jquery-ui
and bootstrap
, due to name collision on button and tooltip plugins.
So I applied the workaround suggested in https://stackoverflow.com/a/27745464/1233379 but whereas it prevent some javascript error, it not seems to restore full functionality of dialog.
Commenting out bootstrap javascript include tag, jquery-ui works as expected.
Some advice?
Here's the fiddle: https://jsfiddle.net/43hrvy26/