I'm using angular-ui and bootstrap in the same web application and I've an issue when trying to use the ui-select2 component: everything works fine except that upon selecting an element in the drop-down list it's not shown in the component, it shows empty, though the ng-model associated variable is correctly updated. This strange behavior goes away if I remove the inclusion of the bootstrap.js file from the main page. Is there anyone who has experienced using both angular-js and bootstrap at the same time and/or who knows about any tweaks to apply for having them work together?
UPDATE:
The ui-select2 component is inside an input-append div, just removing the div solves the problem. I've created a fork of the Angular-ui ui-select2 original sandbox demo here. You can go to the "Version 2" example and check that selecting a value in the list correctly update the model but doesn't updates the input element.