i installed this extension http://www.cniska.net/yii-bootstrap/ , is possible when i make an ajax request to unload from 'preload'=>array('bootstrap','log'), : bootstrap ,i don’t need
to use bootstrap on ajax request , how to avoid that
<link rel="stylesheet" type="text/css" href="/tamada/assets/97e8be51/css/bootstrap.min.css" />
Content updated in AJAX<script type="text/javascript" src="/tamada/assets/cb84ef9f/jquery.min.js"></script>
<script type="text/javascript" src="/tamada/assets/97e8be51/js/bootstrap-button.js"></script>
<script type="text/javascript" src="/tamada/assets/97e8be51/js/bootstrap-tooltip.js"></script>
<script type="text/javascript" src="/tamada/assets/97e8be51/js/bootstrap-popover.js"></script>
<script type="text/javascript">
/*<![CDATA[*/
jQuery('a[rel="tooltip"]').tooltip();
jQuery('a[rel="popover"]').popover();
/*]]>*/
</script>
Thank You A LOT , sorry for my english
You can selectively load it in your
config/main.php.This might not be the best PHP but it should work. Basically, when loading the config, check whether the request is an AJAX request or not using
Yii::app()->request->isAjaxRequest.Add to top of
config/main.php:Then pull in the module (either toggled on or off) using
array_merge:Now when you do an AJAX request to your application the bootstrap module should not be loaded.