填充空网格时,Yii可编辑列不能处理ajax调用

时间:2015-05-15 04:47:14

标签: jquery ajax yii yii-extensions

我尝试使用X-editable扩展名编辑CGridview中的列。它在预加载数据时工作正常。但是当空网格填充Ajax调用数据时,它不起作用。

$.ajax({
    type: 'POST',
    url: '".$this->createUrl('baseContact/upload')."',
    data: data, 
    async: false,
    cache: false,
    contentType: false,
    processData: false,
    success: function(data)
    {
       $.fn.yiiGridView.update('BCImported-grid');  //updating grid here                           
    }
      });

enter image description here

有谁能请给我解决方案?

0 个答案:

没有答案