In case of putting ActiveForm inside bootstrap modal, all assets registered again, causing jquery conflict and affects performance. How can i control assets registered from ActiveForm noting that I need its validation and not need other scripts.
Insert this code before: return $this->renderAjax()
Yii::$app->assetManager->bundles = [
'yii\bootstrap\BootstrapPluginAsset' => false,
'yii\bootstrap\BootstrapAsset' => false,
'yii\web\JqueryAsset' => false,
];