Revision #5 has been created by Kostas Apazidis (KonApaz) on Dec 3, 2013, 3:35:27 PM with the memo:
-
« previous (#4) next (#6) »
Changes
Title
unchanged
Update a part of content using AJAX when select a GridView row
Category
unchanged
How-tos
Yii version
unchanged
Tags
unchanged
update, block, content, AJAX, select, GridView, row
Content
changed
[...]
var keyId = $.fn.yiiGridView.getSelection(grid_id);
keyId = keyId[0]; //above function returns an array with single item, so get the value of the first item
$.ajax({
url: '<?php echo $this->createUrl('PartUpdate'); ?>',
data: {<?php id: keyId
?>},
type: 'GET',
success: function(data) {
$('#part-block').html(data);
}
});[...]