0
我使用下面的鏈接進行排序CGridview一行之後,無法拖動的Yii CGridview行更新
http://www.yiiframework.com/wiki/238/creating-a-jqueryui-sortable-cgridview/
其工作正常,但網更新後我能不能拖動網格行!
我的代碼,
$('#basefilter-grid table').sortable({
forcePlaceholderSize: true,
forceHelperSize: true,
items: 'tr',
update : function() {
serial = $('#basefilter-grid table').sortable('serialize', {key: 'order[]', attribute: 'class'});
$.ajax({
'url': '" . $this->createUrl('baseContact/orderFilterRow') . "',
'type': 'post',
'data': serial,
'success': function(data){
$.fn.yiiGridView.update('basefilter-grid');
},
'error': function(request, status, error){
alert('We are unable to set the sort order at this time. Please try again in a few minutes.');
}
});
},
helper: fixHelper
}).disableSelection();
我列「訂單」後一行拖動其得到更新,電網只刷新更新值將被視爲後,所以我需要迫切更新電網,任何人都可以說如何做這個?
有沒有在您的瀏覽器控制檯日誌中的任何錯誤? – chaos505 2014-10-01 12:12:07
沒有錯誤只是我不能拖動網格更新後的網格行! ! – 2014-10-03 05:16:18