Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

yii2-jui Dialog Misses close Icon #5471

Closed
mtangoo opened this issue Oct 10, 2014 · 4 comments
Closed

yii2-jui Dialog Misses close Icon #5471

mtangoo opened this issue Oct 10, 2014 · 4 comments
Labels
ext:jui status:to be verified Needs to be reproduced and validated.

Comments

@mtangoo
Copy link
Contributor

mtangoo commented Oct 10, 2014

The problem seems to be with Jquery and there is a workaround mentioned here
and here I quote it:

"The reason this is happening, is because you are calling bootstrap in, after you are calling jquery-ui in. Literally, swap the two so that instead of:

<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script src="/js/bootstrap.min.js"></script> 

it becomes

 <script src="js/bootstrap.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>  

"

@mtangoo
Copy link
Contributor Author

mtangoo commented Apr 15, 2015

Is this problem unique to me?

@osCMattiFinn
Copy link

No, it is not unique to you. Why has nobody addressed this?

How can we get Bootstrap to load before jQuery UI?

@cebe cebe added the status:to be verified Needs to be reproduced and validated. label Jul 18, 2015
@cebe cebe added this to the 2.0.x milestone Jul 18, 2015
@kazz3m
Copy link

kazz3m commented Aug 31, 2015

You can add:
'//code.jquery.com/ui/1.11.4/jquery-ui.min.js',

to

public $js = [
    'js/bootstrap.js',
    '//code.jquery.com/ui/1.11.4/jquery-ui.min.js',
];

in /vendor/yiisoft/yii2-bootstrap/BootstrapPluginAsset.php

@yii-bot
Copy link

yii-bot commented Sep 2, 2016

Issue moved to yiisoft/yii2-jui#45

@yii-bot yii-bot closed this as completed Sep 2, 2016
@cebe cebe removed this from the 2.0.x milestone Sep 3, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ext:jui status:to be verified Needs to be reproduced and validated.
Projects
None yet
Development

No branches or pull requests

7 participants