Controller
public function actionIndex()
{
$searchModel = new WarehouseToolsSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
I was expecting normal widget work. I created fresh installation of Yii2, installed latest version of all widgets. When spin widget is removed others widgets works fine eg. INPUT_DROPDOWN_LIST
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Prerequisites
master
branch of yii2-grid.Steps to reproduce the issue
View (index.php)
echo GridView::widget([ 'id' => 'warehouse-table', 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'pjax' => true, 'pjaxSettings' => [ 'neverTimeout' => true, 'refreshGrid' => true, ], //'headerRowOptions' => ['class' => 'kartik-sheet-style'],
Controller public function actionIndex() { $searchModel = new WarehouseToolsSearch(); $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
Expected behavior and actual behavior
When I follow those steps, I can't use editable column with x-popup and touch spin widget. Only 1st record is editable, rest is broken. I got JS error: Uncaught TypeError: $el[0] is undefined getPosition http://localhost/basic/web/assets/621235e8/js/bootstrap-popover-x.js:234
I was expecting normal widget work. I created fresh installation of Yii2, installed latest version of all widgets. When spin widget is removed others widgets works fine eg. INPUT_DROPDOWN_LIST
Environment
Browsers
Operating System
Libraries
Isolating the problem