Yiibooster のソート可能なテーブルの行に問題があります。2 つのエラーのため、機能していません。
- 残りのyiiboosterファイルは機能しており、説明書に従ってインストールを行いました。「jquery.sortable.gridview.js」へのパスはシステムによって生成されます。確認したところ、そのファイルが存在します。
以下のように書いて Yiiboster をインストールしました。
<?php
// main/config.php
Yii::setPathOfAlias('bootstrap', dirname(__FILE__).'/../extensions/bootstrap');
'preload'=>array('log', 'bootstrap'),
// autoloading model and component classes
'import'=>array(
'application.models.*',
'application.components.*',
'application.modules.admin.components',
'application.modules.admin.models.*',
'bootstrap.*',
),
// application components
'bootstrap' => array(
'class' => 'bootstrap.components.Bootstrap',
),
?>
- 2 番目のエラーは、'afterSortableUpdate' プロパティの近くのビュー ファイルで発生します。
Uncaught TypeError: undefined is not a function
アドバイスをお願いします。ありがとう。