jquery.js and bootstrap.js collision occur in server

82 views Asked by At

i have implemented my project in Yii. i have issue with CGrid view search panel. it working fine in localhost. but it not working in server. i found that issue, but i do not know how to overcome these issue.

i found issue ie Jquery 2.0.3.js and assests bootstrap js. its collision occur so that server side its not working properly:

<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'mygridview',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
    'recipeType_name',

    array(
        'class'=>'CButtonColumn','template'=>'{update}{delete}',
    ),
),  )); ?>
0

There are 0 answers