2

在这里,我正在使用 ajax 请求从 clistview 中删除记录,该记录已成功删除,但如果我们刷新页面,列表视图不会更新,那么只有记录从 clist 视图中删除,任何人都可以帮助这是我的代码

<?php
echo CHtml::link(CHtml::encode('Delete'), $this->createUrl('delete', array('id' => $data['id'])), array(// for htmlOptions
            'onclick' => ' {' . CHtml::ajax(array(
            'type'=>'POST',
            'beforeSend' => 'js:function(){if(confirm("Are you sure you want to delete?"))return true;else return false;}',
            'url'=>$this->createUrl('delete', array('id' => $data['id'],'ajax'=>'delete')),
            'complete'=>'js:function(jqXHR, textStatus){$.fn.yiiListView.update("firstlist");}'
            )) .
            'return false;}', // returning false prevents the default navigation to another url on a new page 
            )
        );

这是 clistview 的代码

<?php $this->widget('zii.widgets.CListView', array(
            'id' => 'firstlist', 
            'dataProvider'=>$dataProvider,
            'itemView'=>'_beneview',
            'enablePagination' => false,
            'summaryText' => '',

)); ?>
4

2 回答 2

1

您可以CHtml::ajaxLink用于 ajax 请求,但您的方式也很好。我还启用了分页过滤了 CListView 结果,您可以在此链接上查看更新列表视图的主要内容

请检查视图部分和更新脚本部分。希望他会有所帮助。

于 2013-05-26T11:53:42.780 回答
0

使用CGridView,可以添加CButtonColumn

于 2013-04-12T02:59:03.867 回答