Yii2 kartik -v gridview:TypeError:jQuery(...)。editable不是一个函数

时间:2015-03-31 07:04:39

标签: jquery gridview yii2

当第一次将第一个新数据插入gridview时(此时gridview中没有来自数据库的数据),所有可编辑列都显示为故障按钮而不是工作链接。刷新页面后,Gridview中的可编辑列显示为预期和工作的链接。

为什么只有第一次出现此问题?

将第一个新数据插入Gridview后,这是显示的错误。

TypeError:jQuery(...)。editable不是函数

这是我的专栏:

             [
                'class' => 'kartik\grid\EditableColumn',
                'attribute' => 'short_desc',
                'refreshGrid' => true,
                'editableOptions' => function ($model, $key, $index) {
                    return [
                        'header'=>'short_desc',
                        'size'=>'md',

                    ];
                }
            ]

感谢。

1 个答案:

答案 0 :(得分:0)

我已经解决了我的代码,即使在pjax重新加载WHEN只有一个数据(第一个数据)之后刷新页面。

在我的addNewData()的jquery函数中,我在成功添加新数据后重新加载pjax后添加了以下代码:

<?php                       
     $models = $dataProvider->getModels(); // get dataProvider to check if there is any data

     // refresh whole page for the first newly added data when there is only one data as in Editable Column not initiated when there is no data
     if( count($models) < 1 || $models == null || !isset($models) )                         
     {
 ?>
         window.location.reload();
 <?php                              
     }                      
 ?>

现在这对我有用。