PHPackages                             bscheshirwork/yii2-bootstrap3-jui-conflict-fix - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. bscheshirwork/yii2-bootstrap3-jui-conflict-fix

ActiveYii2-extension[Utility &amp; Helpers](/categories/utility)

bscheshirwork/yii2-bootstrap3-jui-conflict-fix
==============================================

Fix conflict of bootstrap tooltip/button if jquery-ui is enabled

0287PHP

Since Jan 14Pushed 7y ago1 watchersCompare

[ Source](https://github.com/bscheshirwork/yii2-bootstrap3-jui-conflict-fix)[ Packagist](https://packagist.org/packages/bscheshirwork/yii2-bootstrap3-jui-conflict-fix)[ RSS](/packages/bscheshirwork-yii2-bootstrap3-jui-conflict-fix/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependenciesVersions (1)Used By (0)

Asset bundle who fixed conflict between bootstrap plugins and jQuery-UI plugins
===============================================================================

[](#asset-bundle-who-fixed-conflict-between-bootstrap-plugins-and-jquery-ui-plugins)

For case if you see unexpected `jquery-ui tooltip`[![jquery-ui tooltip](https://user-images.githubusercontent.com/5769211/51123967-39469500-182e-11e9-8e7c-7662a31f54a8.gif)](https://user-images.githubusercontent.com/5769211/51123967-39469500-182e-11e9-8e7c-7662a31f54a8.gif)

instead of `bootstrap tooltip`[![bootstrap tooltip](https://user-images.githubusercontent.com/5769211/51123968-39df2b80-182e-11e9-87e5-50070eeae87e.gif)](https://user-images.githubusercontent.com/5769211/51123968-39df2b80-182e-11e9-87e5-50070eeae87e.gif)

Installation
------------

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

add

```
"bscheshirwork/yii2-bootstrap3-jui-conflict-fix": "@dev"

```

to the require section of your `composer.json` file.

Usage
-----

[](#usage)

Add

```
...
/* @var $form yii\widgets\ActiveForm */
...
bscheshirwork\bjf\BootstrapJuiConflictFixAsset::register($this);
```

to top of `view` who use `bootstrap` and `jui` together (for example `yii\bootstrap\BootstrapAsset` from you own `AppAsset` in main template and `yii\jui\JuiAsset` from widget `zxbodya/yii2-gallery-manager`)

note: `BootstrapJuiConflictFixAsset` **must** be register first!

Example:

view (like `/views/crud/_form.php`):

```
...
/* @var $form yii\widgets\ActiveForm */
...
bscheshirwork\bjf\BootstrapJuiConflictFixAsset::register($this);
?>
...
